No Image

New and old ways to emulate CHECK constraints, DOMAIN

2016-02-02 KENNETH 0

Correctness of data comes in different forms. One is referential integrity, also known as foreign keys. Another is CHECK constraints. While MySQL supports foreign keys, it doesn’t support CHECK constraints. Today we will look at three ways to emulate them: triggers views generated columns (new in MySQL 5.7) This is also relevant to another SQL feature: DOMAIN, which, in short, is a user-defined type composed of a base type (INT, CHAR, …), a default value, and a constraint on acceptable values – the latter being some simple sort of CHECK constraint.… Source: mysqlserverteam.com

The Future of NGINX and NGINX Plus

2016-02-02 KENNETH 0

The following is adapted from a presentation given by Owen Garrett at nginx.conf 2015, held in San Francisco in September. You can view the video of the talk here. Table of Contents 0:00 Introduction 0:30 Massive Pace of Development in 2015 3:55 Why the Top Sites Choose NGINX 4:58 Building a Great Application… 12:30 nginScript 13:30 Announcing Dynamic Modules 18:00 NGINX Amplify 0:00 Introduction 2015 has been a really, really big year for NGINX. As Gus said in his keynote presentation, the company has grown, our user base has grown, and the number of customers using our software, taking advantage of our services continues to grow. But what I want to talk to you more about is how the product has changed. 0:30 Massive Pace of Development in 2015 Many of you track us on Mercurial, our source control system. [ more… ]

1월 AWS 기초 웨비나 동영상 및 발표 자료 모음

2016-02-01 KENNETH 0

AWS코리아에서는 AWS 클라우드 기초 지식과 최신 기술을 소개하는 온라인 세미나인 웨비나(Webinar)를 주기적으로 개최하고 있습니다. 지난 온라인 세미나 발표 자료 및 녹화 동영상을 통해서도 배울 수 있으며, 녹화 시 사용자들의 Q&A 등을 통해 더 자세한 내용도 확인하실 수 있습니다. AWS 클라우드 기술을 이해하시는데, 도움이 되시길 바라며 매월 혹은 반기별 웨비나 일정은 Twitter 혹은 Facebook을 참고하시기 바랍니다. 2016년 1월 AWS 기초 웨비나 시리즈 알림: 동영상 다시 보기는 플래시가 설치된 PC에서만 가능합니다. 1월 26일(화) [기초] AWS 클라우드 이해하기 – 사례 중심으로 강사: 정민정 (AWS코리아, 기술 영업 매니저) Adobe Connect로 다시 보기 [기초] AWS에 대해 가장 궁금했던 열 가지 강사: 정우근 (AWS코리아, 기술 영업 매니저) Adobe Connect로 다시 보기 [기초] AWS 클라우드 보안 및 규정 준수 소개 강사: 박철수 (AWS코리아, 솔루션즈아키텍트) Adobe Connect로 다시 보기 [기초] 엔터프라이즈를 위한 AWS 지원 및 사례 강사: 서수영 (AWS코리아, 엔터프라이즈 영업 담당 부장) Adobe Connect로 다시 보기 1월 [ more… ]

[서울 리전 소식] Amazon Elasticsearch 및 CloudSearch 서비스 출시

2016-01-29 KENNETH 0

Amazon Elasticsearch Service (Amazon ES) 및 Amazon CloudSearch 서비스가 AWS Asia Pacific (Seoul) 리전에 출시 되었습니다. Amazon ES는 Elasticsearch 서비스를 좀 더 쉽게 개발, 배포 운영할 수 있는 매니지드 서비스이며, Amazon CloudSearch 역시 웹 애플리케이션에 대한 간편한 검색 서비스를 가능하게 해주는 클라우드 서비스입니다. 서울 리전에 대한 서비스 가격은 Amazon ES 요금표 및 Amazon CloudSearch 요금표를 참고하시기 바랍니다. Amazon Elasticsearch Service and Amazon CloudSearch Available in Asia Pacific (Seoul) Region 참고 Source: aws-blog-korea

kakao의 오픈소스 Ep1 – 대용량 분산 그래프DB "S2Graph"

2016-01-29 KENNETH 0

kakao의 오픈소스 Ep1 – 대용량 분산 그래프DB "S2Graph" “카카오의 오픈소스를 소개합니다” 첫번째는 shon.0와 동료들이 개발한 S2Graph입니다. S2Graph는 카카오에서 1년 여의 개발을 거쳐 카카오톡, 카카오스토리, 카카오뮤직, 선물하기, 다음앱, 다음뉴스, 다음쇼핑 등 20여개 이상의 서비스에 적용된 대용량 분산 그래프 데이터베이스입니다. Scala언어와 Play 프레임웍으로 작성된 그래프 API 서버와 HBase, Kafka, Spark 등 최근 가장 주목받는 기술들로 구성되어, 호기심으로 똘똘뭉친 개발자들에게 많은 도움이 될 것입니다. 그래프 데이터베이스 “그래프”라고 하면, 보고서나 발표자료에 막대 그래프, 파이 챠트,…를 떠올리지만, 이 글에서 언급하는 그래프는 수학자 오일러에서 시작된 그래프 이론의 그래프입니다. 그래프 이론은 “유한 개의 점들로 이루어진 집합과 점들 간의 연결(관계)를 다루는” 학문입니다. 예를 들면, “어떤 지역과 지역을 최단거리로 이동하려면 어떻게 해야 되는가? 어떤 지점들이 있는데 이 지점들을 중복으로 지나지 않고 한번에 이동할 수 있는가?” 같은 문제를 연구하는 거죠. 이런 “그래프 구조”를 저장하고 표현하기 위해 만들어진 도구가 그래프 데이터베이스 (graph database; 이하 그래프DB)입니다. 소셜 그래프 카카오의 많은 서비스들은 사용자 [ more… ]