AWS CodeCommit 이벤트 알림 신규 기능

2016-03-10 KENNETH 0

AWS CodeCommit 이벤트 알림 신규 기능 AWS CodeCommit는 안전하고 확장성이 뛰어난 전용 Git 저장소를 쉽게 호스트 할 수 있는 매니지드 소스 관리 서비스입니다. 이번에 저장소 트리거를 추가하여 CodeCommit이 좀 더 유용한 서비스가 되었습니다. 트리거를 이용하여 단위 테스트 및 배포 도구 소스 코드 관리 워크 플로우에 통합할 수 있습니다. 트리거는 효율적이고 확장이므로 변경을 가져오도록 구축 된 모델보다 더 광범위하게 적용 가능합니다. 지속적인 통합과 지속적인 전달을 기반으로 한 개발 방법론을 위해 트리거 기능이 매우 유용합니다. 통지 기능 소개 CodeCommit 저장소마다 최대 10 개의 트리거를 만들 수 있습니다. 트리거는 코드 푸시/태그 생성/태그 삭제를 포함하는 저장소 동작에 대한 응답을 받습니다. 트리거는 저장소 특정 지점이나 모든 지점에 넣을 수 있습니다. 트리거를 통해 Amazon Simple Notification Service (SNS) 노티 항목을 보내거나 AWS Lambda 함수 호출이 가능합니다. 또한, 개별 트리거는 사용자 정의 데이터로 확장하는 것이 가능하고, 그 데이터에 의해 특정 트리거 같은 이벤트에서 실행되는 다른 트리거와 구별 [ more… ]

AWS 월 비용 계산기, 서울 리전 지원 시작

2016-03-10 KENNETH 0

AWS 월 비용 계산기, 서울 리전 지원 시작 아마존 웹 서비스는 50여개가 넘는 다양한 클라우드 서비스에 대해 간편한 종량 과금제를 제공합니다. AWS에서는 필요한 서비스에 대해 계약금이나 선수금 없이 사용한 기간에 사용한 만큼에 대해서만 비용을 지불하는 가격 철학을 가지고 있습니다. 다양한 클라우드 서비스의 각 리전별로 컴퓨팅, 데이터 트래픽 및 스토리지 사용량 등 원하는 자원에 대해 어느 정도 비용이 나오는지 알고 싶은 경우를 위해 AWS에서는 간편 월 비용 계산기를 제공하고 있습니다. 오늘 부터 AWS 간편 월 비용 계산기에 지난 1월 개시한 서울 리전의 주요 서비스에 대한 요금 계산 기능이 추가되었습니다. 리전 선택 항목에서 Asia-Pacific(Seoul)을 선택하시면, 요금 계산을 하실 수 있습니다. 계산기 맨 왼쪽에는 리전에 서비스 목록이 있으며, 계산 가능 서비스 항목을 계속 추가될 예정입니다. 중간에는 서비스별로 세부적인 기능에 대한 요금 항목을 설정할 수 있습니다. 예를 들어 EC2의 경우, 인스턴스 타입과 사용량 그리고 온디멘드인지 예약 인스턴스인지를 선택하고, 스토리지 사용량 및 트래픽 등을 예측하여 [ more… ]

No Image

WordPress 4.5 Beta 3

2016-03-10 KENNETH 0

WordPress 4.5 Beta 3 WordPress 4.5 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip). For more information on what’s new in 4.5, check out the Beta 1 and Beta 2 blog posts, along with in-depth field guides on make/core. Some of the fixes in Beta 3 include: Many Theme Logo Support (#33755) fixes, including support for bundled Twenty Fifteen (#35944). Add Responsive Preview to theme install previewer (#36017). Support Imagick in HHVM (#35973). Whitelist IPTC, XMP, and EXIF profiles from strip_meta() to maintain authorship, copyright, license, and image orientation (#28634). Support Windows shares/DFS roots in wp_normalize_path() [ more… ]

Refactoring a Monolith into Microservices

2016-03-09 KENNETH 0

Refactoring a Monolith into Microservices This is the seventh and final article in my series about building applications with microservices. The first article introduces the Microservice Architecture pattern and discusses the benefits and drawbacks of using microservices. The following articles discuss different aspects of the microservice architecture: using an API Gateway, inter-process communication, service discovery, event-driven data management, and deploying microservices. In this article, we look at strategies for migrating a monolithic application to microservices. I hope that this series of articles has given you a good understanding of the microservice architecture, its benefits and drawbacks, and when to use it. Perhaps the microservice architecture is a good fit for your organization. However, there is fairly good chance you are working on a large, complex monolithic application. Your daily experience of developing and deploying your application is slow and painful. [ more… ]

No Image

Indexing JSON documents via Virtual Columns

2016-03-09 KENNETH 0

Indexing JSON documents via Virtual Columns In a previous post I took the new JSON datatype and functions for a test drive, using sample data provided by SF OpenData. Today I will extend that example to include indexing. Introducing Generated Columns MySQL 5.7 introduces a new feature called generated columns.… Source: Indexing JSON documents via Virtual Columns