SlideShare a Scribd company logo
1 of 90
Download to read offline
© 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
김필중 | 솔루션즈 아키텍트
2016. 05. 17
AWS 기반의 마이크로서비스 아키텍처
마이크로서비스
마이크로서비스 트렌드: 검색
마이크로서비스 트렌드: 구인
Source: indeed
누가 마이크로서비스를 사용하고 있나?
이 세션에서 다룰 내용
• 마이크로서비스가 무엇인지
• 기존 서비스와는 어떤 차이가 있는지
• 마이크로서비스 디자인과 고려사항
• AWS 와 마이크로서비스
마이크로서비스?
“are small, independent processes that communicate
with each other to form complex applications which utilize
language-agnostic APIs. These services are small building blocks,
highly decoupled and focused on doing a small task,
facilitating a modular approach to system-building.
The microservices architectural style is becoming the standard for
building continuously deployed systems.” - Wikipedia
마이크로서비스?
“are small, independent processes that communicate
with each other to form complex applications which utilize
language-agnostic APIs. These services are small building blocks,
highly decoupled and focused on doing a small task,
facilitating a modular approach to system-building.
The microservices architectural style is becoming the standard for
building continuously deployed systems.” - Wikipedia
작은 빌딩 블록들
높은 비결합성 작은 작업을 수행
모듈식의 접근
디자인 스타일
Amazon
서비스 구조도
Netflix
Monolithic vs. SOA vs. Microservices
SOA
거친 입자
Microservices
고운 입자
Monolithic
하나의 입자
Monolithic 아키텍처
Order UI User UI
Shipping
UI
Order
Service
User
Service
Shipping
Service
Data
Access
Monolithic 아키텍처 - 확장
마이크로서비스 아키텍처
Order UI User UI
Shipping
UI
Order
Service
User
Service
Shipping
Service
마이크로서비스 아키텍처 - 확장
Order UI User UI UI
Order
Service
Service
Shipping
Service
Order UI
Order UI
User UI UIShipping
UI
Order
ServiceOrder
Service
Service
Service
Service
Service
User
Service
Shipping
Service
Monolithic 아키텍처에서 발견할 수 있는 것들
• 복잡한 코드와 관리의 어려움
• Bottleneck 이 될 수 있는 배포
• 변경의 두려움
• 부족한 주인의식
• 연쇄 실패
• 확장의 어려움
Monolithic 아키텍처에서 발견할 수 있는 것들
• 복잡한 코드와 관리의 어려움
• Bottleneck 이 될 수 있는 배포
• 변경의 두려움
• 부족한 주인의식
• 연쇄 실패
• 확장의 어려움
하나의 패키지에 모든 컴포넌트들
포함
Monolithic 아키텍처에서 발견할 수 있는 것들
• 복잡한 코드와 관리의 어려움
• Bottleneck 이 될 수 있는 배포
• 변경의 두려움
• 부족한 주인의식
• 연쇄 실패
• 확장의 어려움
Dev 테스트
종속성
Staging 배포
Q&A
Production 배포
Monolithic 아키텍처에서 발견할 수 있는 것들
• 복잡한 코드와 관리의 어려움
• Bottleneck 이 될 수 있는 배포
• 변경의 두려움
• 부족한 주인의식
• 연쇄 실패
• 확장의 어려움
비지니스 요구사항을 해결하는
새로운 프레임워크, 서비스 등장
하나의 변경
=> 다양한 Side effect
Monolithic 아키텍처에서 발견할 수 있는 것들
• 복잡한 코드와 관리의 어려움
• Bottleneck 이 될 수 있는 배포
• 변경의 두려움
• 부족한 주인의식
• 연쇄 실패
• 확장의 어려움
그거 할 시간 없어요, 그런건 QA 가
해야죠.
데이터베이스가 어떻게 작동하는지
알 필요 없죠,
그건 DBA 가 하는거니까요.
코딩 끝났어요, 이제 OPS 가 항상
작동하게(HA) 할 거에요.
Monolithic 아키텍처에서 발견할 수 있는 것들
• 복잡한 코드와 관리의 어려움
• Bottleneck 이 될 수 있는 배포
• 변경의 두려움
• 부족한 주인의식
• 연쇄 실패
• 확장의 어려움
하나의 실패
=> 시스템 전체의 실패를 야기
Monolithic 아키텍처에서 발견할 수 있는 것들
• 복잡한 코드와 관리의 어려움
• Bottleneck 이 될 수 있는 배포
• 변경의 두려움
• 부족한 주인의식
• 연쇄 실패
• 확장의 어려움
기능 추가는
다양한 부서간의 의사소통을 요구
=> 늦어지는 업데이트
마이크로서비스로 얻을 수 있는 것들
• 서로 다른 서비스들은 서로 다른 언어로 개발 가능
• 쉬운 integration 과 automatic deployment
• 쉽게 이해하고 수정가능한 코드들 => 새로운 팀원의 생산성 향상
• 최근 기술을 비교적 쉽게 도입
• 빠른 서비스 시작 속도와 빠른 배포
• 기능 추가시 해당 서비스만 수정 및 배포 할 수 있음
마이크로서비스 아키텍처 특징
Do one
thing well
Independent
Decentralized
Black Box
Polyglot
You build it, you run it
잦은 오해
Agile, 12-Factor App, Docker, Dropwizard,
SpringBoot, Play, Ratpack, …
마이크로서비스
!=
무엇이 필요할까?
아키텍처와 팀 조직
organizations which design
systems….are constrained to
produce designs which are copies
of the communication structures of
these organizations
- Conway’s law
Source: http://www.melconway.com/Home/Committees_Paper.html
아키텍처와 팀 조직
organizations which design
systems….are constrained to
produce designs which are copies
of the communication structures of
these organizations
- Conway’s law
전형적인 3-tier 시스템
데이터 저장은 파일로 충분,
상호작용은 CLI 로 충분
SQL DB
Javascript/CSS
C#
UI Business DB
Source: http://www.melconway.com/Home/Committees_Paper.html
아키텍처와 팀 조직
organizations which design
systems….are constrained to
produce designs which are copies
of the communication structures of
these organizations
- Conway’s law
아키텍처
팀 조직
Source: http://www.melconway.com/Home/Committees_Paper.html
그럼 어떤 팀 조직이 필요할까?
CoC and Hay Day
were each developed by
teams of just five developers
Source: http://www.wired.co.uk/news/archive/2013-11/13/ilkka-paananen-interview
Small independent cells is where
the company name comes from
We say
‘get big by thinking small’
Ilkka Paananen
CEO of Supercell
4명 / 유닛6~8명 / 팀
선호 팀 크기
source: wikipedia
커뮤니케이션 링크
J. Richard Hackman
n (n-1)
2
n = 팀 크기 0
200
400
600
800
1000
1200
1400
0 5 10 15 20 30 50
링크
# of people
Source: Designing Products People Love: How Great Designers Create Successful Products
12 / 664 / 6
팀 크기와 커뮤니케이션 채널
6 / 15
Source: http://chrisnielsen.ws/how-big-teams-choose-to-fail/
Jeff Bezos
CEO of Amazon.com
Once at an Amazon offsite, managers had the
reasonable-sounding suggestion that
employees should be increasing communication
with each other.
To their surprise, founder and CEO Jeff Bezos stood
up and announced,
“No, communication is terrible!”
마이크로 서비스 아키텍처
- 디자인과 고려사항
실시간 멀티플레이 게임
- 탱크 슈팅 게임
지역 선택과 접속
게임 플레이
요구사항
• 가능한 적은 관리 포인트
• 다양한 분석이 가능하여야 함
• 게임 기능
• 유저는 특정 Area 에 접속하여, 그 Area 에 접속한 다른 유저들과 게임 플레이
• 일정 수의 Bot 이 있어 다른 유저가 없더라도 게임이 가능
• 아이템 구매가 가능
• 랭킹을 볼 수 있음
요구사항
• 가능한 적은 관리 포인트
• 다양한 분석이 가능하여야 함
• 게임 기능
• 유저는 특정 Area 에 접속하여, 그 Area 에 접속한 다른 유저들과 게임 플레이
• 일정 수의 Bot 이 있어 다른 유저가 없더라도 게임이 가능
• 아이템 구매가 가능
• 랭킹을 볼 수 있음
AnalyticsRankingItemGameArea
… AWS
Lambda
…
마이크로서비스 아키텍처의 고려사항
• 리소스와 상태 관리
• 모니터링
• 서비스 Discovery
• 배포
마이크로서비스 아키텍처의 고려사항
• 리소스와 상태 관리
• 모니터링
• 서비스 Discovery
• 배포
서비스에 적합한 컨테이너
• 간단하게 모델링이 가능
• 애플리케이션 종류, 언어 종류 상관 없음
• 이미지 그 자체가 버전
• 테스트와 배포시 같은 이미지를 사용
• Stateless 서버를 통해 변경의 위험을 줄임
Server
Guest OS
Bins/Libs Bins/Libs
App2App1
명확한 하나의 호스트 관리
힘든 호스트들의 관리
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
Server
Guest OS
AZ 1 AZ 2
AZ 3
Amazon EC2 Container Service
리소스 관리: Amazon EC2 Container Service
Elastic Load Balancing
Amazon Elastic Block Store
Amazon Virtual Private Cloud
AWS Identity and Access Management
AWS CloudTrail
AWS와 함께 사용되도록 설계
애플리케이션들
배치 작업들
복수의 스케줄러들
유연한 컨테이너 배치
실행시킬 것 없음
완전한 상태
제어와 모니터링
확장
크기 상관 없는 클러스터 관리
잠깐, 리소스 관리가 꼭 필요할까?
No server is easier to manage
than ‘no server’
Werner Vogels
CTO, Amazon.com
리소스 관리: AWS Lambda
서버 없는, 이벤트 처리 방식의 컴퓨팅 서비스
Lambda = 서버 없는 마이크로서비스
• 인프라 없이 코드를 실행
• 제한없는 확장
• 완전 자동화된 관리
Localytics 사례
Analytics
processing
service
(enriches data)
Elastic Load
Balancing
Amazon SQS
Analytics
DB
Microservice
Internet
HTTP
endpoint
마이크로서비스가
추가될 때 메인 서비스 업데이트가 필요
Localytics 사례
HTTP
endpoint
Analytics
processing
service
(enriches data)
Elastic Load
Balancing
Amazon SQS
Analytics
DB
Microservice
Internet
Microservice
Microservice
Amazon
Kinesis
Amazon
Lambda
Kinesis 와 Lambda로
언제든 필요한 서비스를 개발 및 추가가 가능
마이크로서비스 아키텍처의 고려사항
• 리소스와 상태 관리
• 모니터링
• 서비스 Discovery
• 배포
모니터링: Amazon CloudWatch
• 1분 주기로 metric 데이터가 집계되고, 2주간 보관
• 이용 가능한 metric: CPUReservation,
MemoryReservation, CPUUtilization, MemoryUtilization
• 이용 가능한 dimension: ClusterName, ServiceName
모니터링: Amazon CloudWatch
모니터링: Amazon CloudWatch
# Edit crontab
> crontab -e
# Add command to report disk space utilization to CloudWatch every five minutes
*/5 * * * * <path_to>/mon-put-instance-data.pl --disk-space-util--disk-space-used --disk-space-avail--disk-path=/ --from-cron
디스크 공간 등의 추가적인 metric 을 모니터링하기 위해
CloudWatch 모니터링 스크립트를 사용
모니터링: Datadog 와 Amazon ECS
모니터링: Sysdig Cloud 와 Amazon ECS
마이크로서비스 아키텍처의 고려사항
• 리소스와 상태 관리
• 모니터링
• 서비스 Discovery
• 배포
서비스 Discovery: ECS 서비스와 Route 53
• Route 53 의 Private Hosted Zone 활용
• DHCP Options Sets 으로 호스트의 Search Path 설정
• ECS 서비스를 ELB 와 함께 설정
• 각각의 ELB 에 CNAME 을 생성
서비스 Discovery: ECS 서비스와 Route 53
Task
Task TaskTask
ECS
service
Application
router, e.g.
NGINX
Internal ELB with
CNAME, e.g.
api.example.com
Route 53 private
zone, e.g.
example.com
서비스 Discovery: Weaveworks
서비스 Discovery: Consul
ECSCluster
consul-server
ECS Instance
consul-agent
registrator
ECS Instance
Back end 1
Back end 2
consul-agent
registrator
ECS Instance
Front end
ECSCluster
서비스 Discovery: 기타
• Zookeepr
• Doozer
• Etcd
• Airbnb 의 SmartStack
• Netflex 의 Eureka
• NSQ
• Serf
• SkyDNS
• …
마이크로서비스 아키텍처의 고려사항
• 리소스와 상태 관리
• 모니터링
• 서비스 Discovery
• 배포
배포: 라이프사이클
개발자 배포 파이프라인마이크로서비스
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
build pipeline
ECS 의 스케줄링 컨테이너
배치 작업
ECS Task 스케줄러
Task 를 한번 실행
배치 작업
RunTask (랜덤)
StartTask (배치)
Long-running 애플리케이션
ECS 서비스 스케줄러
상태 관리
스케일 업 / 다운
가용영역 인지
스케줄링 컨테이너: Long-running 애플리케이션
Blue-Green 배포
• 두개의 ECS 서비스 정의
• 각 서비스는 ELB 와 연동
• Route 53 의 가중치 라우팅
정책으로 두개의 ELB 에 각 100%,
0% 로 설정
• Blue, Green 서비스에 배포 및
가중치 변경
TaskTask
Route 53
record set
with
weighted
routing
policy
0%
100%
배포: AWS Lambda 배포
코드 완료!
Lambda 함수
업데이트
배포: Vingle 사례
Opsworks
(Background)
Route 53
OpsWorks
(Service)
CloudWatch S3SNS
RDS
ElastiCache DynamoDB
RedShift
Elastic Load
BalancingUsers
배포: Vingle 사례
로컬 개발 Docker빌드 스테이징
테스트
프로덕션
배포
로컬 개발 테스트
(5분)
스테이징
(20분)
테스트
프로덕션
(20분)
배포
Container 이용 이전과 이후
배포: Vingle 사례
배포
OpsWorks EC2
Booting
(1분)
Container Deliver
(1분)
Opsworks에 정의된 Ruby On Rails App
On service
(2분)
배포: ECS CI/CD 파트너
배포: Shippable 을 활용한 ECS CD
아키텍처
Amazon
API
Gateway
Login
Service
workers
Elastic
Load
Balancing
Proxy
Service
Game
Service
Item
Service
Area
Service Users Area
Elasticsearch
Service
Game
Search
Service
Dynamo Streams
users
Dynamo Streams
Dynamo Streams
Item
Dynamo Streams
Amazon
Route 53
ELB
ELB
Ranking
Service
아키텍처
Amazon
API
Gateway
Login
Service
workers
Elastic
Load
Balancing
Proxy
Service
Game
Service
Item
Service
Area
Service Users Area
Elasticsearch
Service
Game
Search
Service
Dynamo Streams
users
Dynamo Streams
Dynamo Streams
Item
Dynamo Streams
Amazon
Route 53
ELB
ELB
Ranking
Service
Amazon ECS
Container
아키텍처
Amazon
API
Gateway
Login
Service
workers
Elastic
Load
Balancing
Proxy
Service
Game
Service
Item
Service
Area
Service Users Area
Elasticsearch
Service
Game
Search
Service
Dynamo Streams
users
Dynamo Streams
Dynamo Streams
Item
Dynamo Streams
Amazon
Route 53
ELB
ELB
Ranking
Service
Serverless
API Gateway AWS Lambda
아키텍처
Amazon
API
Gateway
Login
Service
workers
Elastic
Load
Balancing
Proxy
Service
Game
Service
Item
Service
Area
Service Users Area
Elasticsearch
Service
Game
Search
Service
Dynamo Streams
users
Dynamo Streams
Dynamo Streams
Item
Dynamo Streams
Amazon
Route 53
ELB
ELB
Ranking
Service
Databases
Amazon DynamoDB
아키텍처
Amazon
API
Gateway
Login
Service
workers
Elastic
Load
Balancing
Proxy
Service
Game
Service
Item
Service
Area
Service Users Area
Elasticsearch
Service
Game
Search
Service
Dynamo Streams
users
Dynamo Streams
Dynamo Streams
Item
Dynamo Streams
Amazon
Route 53
ELB
ELB
Ranking
Service
Analytics
Amazon Elasticsearch
아키텍처
Amazon
API
Gateway
Login
Service
workers
Elastic
Load
Balancing
Proxy
Service
Game
Service
Item
Service
Area
Service Users Area
Elasticsearch
Service
Game
Search
Service
Dynamo Streams
users
Dynamo Streams
Dynamo Streams
Item
Dynamo Streams
Amazon
Route 53
ELB
ELB
Ranking
ServiceAutomation & Deployment
CloudFormation
CodePipelineOpsworks
Elastic Beanstalk
정리
• 혁신과 속도를 위한 마이크로서비스
• 트레이드오프와 새로운 도전
• 자동화는 복잡함에 대한 해결책
• 관리 오버헤드를 줄이기 위해 클라우드 기반의
툴들
• 노 서버 = 노 오버헤드
• 변화의 위험은 툴과 문화로 줄일 수 있습니다!
AWS 와 마이크로서비스
AWS 와 마이크로서비스: 자동화
Infrastructure automation techniques have evolved
enormously over the last few years
- the evolution of the cloud and AWS in particular has
reduced the operational complexity of building, deploying
and operating microservices.
– Martin Fowler
Source: http://martinfowler.com/articles/microservices.html
AWS 와 마이크로서비스: Polyglot - 스토리지
FS
Blocks
Static
Assets
Meta
Data
Temp
Files
Data
Blobs
Event
Logs
Search
Indices
Struct.
Data
Back-
Ups
Amazon S3Amazon EBS
Amazon GlacierEphemeral
EC2 Storage CloudFront
DynamoDBAmazon RDS Amazon
CloudSearch
Amazon
Kinesis
AWS 와 마이크로서비스: Polyglot - 언어
• Java
• Python
• Ruby
• .NET
• PHP
• Javascript
• Node.js
• iOS
• Android
AWS 와 마이크로서비스: Polyglot - OS
• Amazon Linux
• Redhat
• SUSE
• Open BSD
• CentOS
• Debian
• Ubuntu
• Windows Server 2003
• Windows Server 2008
• Windows Server 2012
AWS 와 마이크로서비스
• 필요한 만큼만 리소스를 사용 (On Demand Resources)
• 관리형 서비스 (Managed Services)
• 모든 서비스는 프로그래머블 (Programmable Services)
• IaC (Infrastructure as code)
• 내장된 기능들
• 모니터링, 보안, 로깅, …
• 확장성, 가용성, …
• 서버없는 아키텍처
여러분의 피드백을 기다립니다!
https://www.awssummit.co.kr
모바일 페이지에 접속하셔서, 지금 세션 평가에
참여하시면, 행사 후 기념품을 드립니다.
#AWSSummit 해시태그로 소셜 미디어에 여러분의
행사 소감을 올려주세요.
발표 자료 및 녹화 동영상은 AWS Korea 공식 소셜
채널로 곧 공유될 예정입니다.
AWS 기반의 마이크로 서비스 아키텍쳐 구현 방안 :: 김필중 :: AWS Summit Seoul 20

More Related Content

What's hot

AWS를 활용한 리테일,이커머스 워크로드와 온라인 서비스 이관 사례::이동열, 임혁용:: AWS Summit Seoul 2018
AWS를 활용한 리테일,이커머스 워크로드와 온라인 서비스 이관 사례::이동열, 임혁용:: AWS Summit Seoul 2018 AWS를 활용한 리테일,이커머스 워크로드와 온라인 서비스 이관 사례::이동열, 임혁용:: AWS Summit Seoul 2018
AWS를 활용한 리테일,이커머스 워크로드와 온라인 서비스 이관 사례::이동열, 임혁용:: AWS Summit Seoul 2018
Amazon Web Services Korea
 
게임서비스를 위한 ElastiCache 활용 전략 :: 구승모 솔루션즈 아키텍트 :: Gaming on AWS 2016
게임서비스를 위한 ElastiCache 활용 전략 :: 구승모 솔루션즈 아키텍트 :: Gaming on AWS 2016게임서비스를 위한 ElastiCache 활용 전략 :: 구승모 솔루션즈 아키텍트 :: Gaming on AWS 2016
게임서비스를 위한 ElastiCache 활용 전략 :: 구승모 솔루션즈 아키텍트 :: Gaming on AWS 2016
Amazon Web Services Korea
 
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
Amazon Web Services Korea
 

What's hot (20)

AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
AWS 기반 클라우드 아키텍처 모범사례 - 삼성전자 개발자 포털/개발자 워크스페이스 - 정영준 솔루션즈 아키텍트, AWS / 유현성 수석,...
 
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
데브옵스 엔지니어를 위한 신규 운영 서비스 - 김필중, AWS 개발 전문 솔루션즈 아키텍트 / 김현민, 메가존클라우드 솔루션즈 아키텍트 :...
 
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019
천만 사용자를 위한 AWS 클라우드 아키텍처 진화하기 - 김준형 솔루션즈 아키텍트, AWS :: AWS Summit Seoul 2019
 
AWS를 활용한 리테일,이커머스 워크로드와 온라인 서비스 이관 사례::이동열, 임혁용:: AWS Summit Seoul 2018
AWS를 활용한 리테일,이커머스 워크로드와 온라인 서비스 이관 사례::이동열, 임혁용:: AWS Summit Seoul 2018 AWS를 활용한 리테일,이커머스 워크로드와 온라인 서비스 이관 사례::이동열, 임혁용:: AWS Summit Seoul 2018
AWS를 활용한 리테일,이커머스 워크로드와 온라인 서비스 이관 사례::이동열, 임혁용:: AWS Summit Seoul 2018
 
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기
 
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
Amazon OpenSearch Deep dive - 내부구조, 성능최적화 그리고 스케일링
 
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
SK Telecom - 망관리 프로젝트 TANGO의 오픈소스 데이터베이스 전환 여정 - 발표자 : 박승전, Project Manager, ...
 
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
AWS 클라우드 비용 최적화를 위한 TIP - 임성은 AWS 매니저
 
AWS 클라우드 이해하기-사례 중심 (정민정) - AWS 웨비나 시리즈
AWS 클라우드 이해하기-사례 중심 (정민정) - AWS 웨비나 시리즈AWS 클라우드 이해하기-사례 중심 (정민정) - AWS 웨비나 시리즈
AWS 클라우드 이해하기-사례 중심 (정민정) - AWS 웨비나 시리즈
 
판교 개발자 데이 – Aws가 제안하는 서버리스 아키텍처 – 김필중
판교 개발자 데이 – Aws가 제안하는 서버리스 아키텍처 – 김필중판교 개발자 데이 – Aws가 제안하는 서버리스 아키텍처 – 김필중
판교 개발자 데이 – Aws가 제안하는 서버리스 아키텍처 – 김필중
 
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인
AWS Control Tower를 통한 클라우드 보안 및 거버넌스 설계 - 김학민 :: AWS 클라우드 마이그레이션 온라인
 
게임서비스를 위한 ElastiCache 활용 전략 :: 구승모 솔루션즈 아키텍트 :: Gaming on AWS 2016
게임서비스를 위한 ElastiCache 활용 전략 :: 구승모 솔루션즈 아키텍트 :: Gaming on AWS 2016게임서비스를 위한 ElastiCache 활용 전략 :: 구승모 솔루션즈 아키텍트 :: Gaming on AWS 2016
게임서비스를 위한 ElastiCache 활용 전략 :: 구승모 솔루션즈 아키텍트 :: Gaming on AWS 2016
 
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
AWS DMS를 통한 오라클 DB 마이그레이션 방법 - AWS Summit Seoul 2017
 
천만사용자를 위한 AWS 클라우드 아키텍처 진화하기 – 문종민, AWS솔루션즈 아키텍트:: AWS Summit Online Korea 2020
천만사용자를 위한 AWS 클라우드 아키텍처 진화하기 – 문종민, AWS솔루션즈 아키텍트::  AWS Summit Online Korea 2020천만사용자를 위한 AWS 클라우드 아키텍처 진화하기 – 문종민, AWS솔루션즈 아키텍트::  AWS Summit Online Korea 2020
천만사용자를 위한 AWS 클라우드 아키텍처 진화하기 – 문종민, AWS솔루션즈 아키텍트:: AWS Summit Online Korea 2020
 
AWS Fargate와 Amazon ECS를 사용한 CI/CD 베스트 프랙티스 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Build...
AWS Fargate와 Amazon ECS를 사용한 CI/CD 베스트 프랙티스 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Build...AWS Fargate와 Amazon ECS를 사용한 CI/CD 베스트 프랙티스 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Build...
AWS Fargate와 Amazon ECS를 사용한 CI/CD 베스트 프랙티스 - 유재석, AWS 솔루션즈 아키텍트 :: AWS Build...
 
AWS Fargate on EKS 실전 사용하기
AWS Fargate on EKS 실전 사용하기AWS Fargate on EKS 실전 사용하기
AWS Fargate on EKS 실전 사용하기
 
이벤트 기반 분산 시스템을 향한 여정
이벤트 기반 분산 시스템을 향한 여정이벤트 기반 분산 시스템을 향한 여정
이벤트 기반 분산 시스템을 향한 여정
 
CloudWatch 성능 모니터링과 신속한 대응을 위한 노하우 - 박선용 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
CloudWatch 성능 모니터링과 신속한 대응을 위한 노하우 - 박선용 솔루션즈 아키텍트:: AWS Cloud Track 3 GamingCloudWatch 성능 모니터링과 신속한 대응을 위한 노하우 - 박선용 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
CloudWatch 성능 모니터링과 신속한 대응을 위한 노하우 - 박선용 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
 
농심 그룹 메가마트 : 온프레미스 Exadata의 AWS 클라우드 환경 전환 사례 공유-김동현, NDS Cloud Innovation Ce...
농심 그룹 메가마트 : 온프레미스 Exadata의 AWS 클라우드 환경 전환 사례 공유-김동현, NDS Cloud Innovation Ce...농심 그룹 메가마트 : 온프레미스 Exadata의 AWS 클라우드 환경 전환 사례 공유-김동현, NDS Cloud Innovation Ce...
농심 그룹 메가마트 : 온프레미스 Exadata의 AWS 클라우드 환경 전환 사례 공유-김동현, NDS Cloud Innovation Ce...
 
[Spring Camp 2018] 11번가 Spring Cloud 기반 MSA로의 전환 : 지난 1년간의 이야기
[Spring Camp 2018] 11번가 Spring Cloud 기반 MSA로의 전환 : 지난 1년간의 이야기[Spring Camp 2018] 11번가 Spring Cloud 기반 MSA로의 전환 : 지난 1년간의 이야기
[Spring Camp 2018] 11번가 Spring Cloud 기반 MSA로의 전환 : 지난 1년간의 이야기
 

Similar to AWS 기반의 마이크로 서비스 아키텍쳐 구현 방안 :: 김필중 :: AWS Summit Seoul 20

AWS re:Invent 특집(2) – 서버리스(Serverless) 마이크로서비스를 위한 일곱 가지 모범 사례 (윤석찬)
AWS re:Invent 특집(2) – 서버리스(Serverless) 마이크로서비스를 위한 일곱 가지 모범 사례 (윤석찬)AWS re:Invent 특집(2) – 서버리스(Serverless) 마이크로서비스를 위한 일곱 가지 모범 사례 (윤석찬)
AWS re:Invent 특집(2) – 서버리스(Serverless) 마이크로서비스를 위한 일곱 가지 모범 사례 (윤석찬)
Amazon Web Services Korea
 
HB Smith에서는 AWS 이렇게 사용한다
HB Smith에서는 AWS 이렇게 사용한다HB Smith에서는 AWS 이렇게 사용한다
HB Smith에서는 AWS 이렇게 사용한다
Jongwon Han
 
인프라 자동 배포를 위한 AWS CloudFormation 고급 활용법 - AWS Summit Seoul 2017
인프라 자동 배포를 위한 AWS CloudFormation 고급 활용법 - AWS Summit Seoul 2017인프라 자동 배포를 위한 AWS CloudFormation 고급 활용법 - AWS Summit Seoul 2017
인프라 자동 배포를 위한 AWS CloudFormation 고급 활용법 - AWS Summit Seoul 2017
Amazon Web Services Korea
 

Similar to AWS 기반의 마이크로 서비스 아키텍쳐 구현 방안 :: 김필중 :: AWS Summit Seoul 20 (20)

[2017 AWS Startup Day] 서버리스 마이크로서비스로 일당백 개발조직 만들기
[2017 AWS Startup Day] 서버리스 마이크로서비스로 일당백 개발조직 만들기[2017 AWS Startup Day] 서버리스 마이크로서비스로 일당백 개발조직 만들기
[2017 AWS Startup Day] 서버리스 마이크로서비스로 일당백 개발조직 만들기
 
MSA 전략 2: 마이크로서비스, 어떻게 구현할 것인가?
MSA 전략 2: 마이크로서비스, 어떻게 구현할 것인가?MSA 전략 2: 마이크로서비스, 어떻게 구현할 것인가?
MSA 전략 2: 마이크로서비스, 어떻게 구현할 것인가?
 
Private PaaS with Docker, spring cloud and mesos
Private PaaS with Docker, spring cloud and mesos Private PaaS with Docker, spring cloud and mesos
Private PaaS with Docker, spring cloud and mesos
 
1711 azure-live
1711 azure-live1711 azure-live
1711 azure-live
 
데브옵스(DevOps) 문화 모범 사례와 구현 도구 살펴보기 – 박선준 :: AWS Builders Online Series
데브옵스(DevOps) 문화 모범 사례와 구현 도구 살펴보기 – 박선준 :: AWS Builders Online Series데브옵스(DevOps) 문화 모범 사례와 구현 도구 살펴보기 – 박선준 :: AWS Builders Online Series
데브옵스(DevOps) 문화 모범 사례와 구현 도구 살펴보기 – 박선준 :: AWS Builders Online Series
 
Microservice Architecture
Microservice ArchitectureMicroservice Architecture
Microservice Architecture
 
designing, implementing and delivering microservices with event storming, spr...
designing, implementing and delivering microservices with event storming, spr...designing, implementing and delivering microservices with event storming, spr...
designing, implementing and delivering microservices with event storming, spr...
 
4. 대용량 아키텍쳐 설계 패턴
4. 대용량 아키텍쳐 설계 패턴4. 대용량 아키텍쳐 설계 패턴
4. 대용량 아키텍쳐 설계 패턴
 
소프트웨어 개발 트랜드 및 MSA (마이크로 서비스 아키텍쳐)의 이해
소프트웨어 개발 트랜드 및 MSA (마이크로 서비스 아키텍쳐)의 이해소프트웨어 개발 트랜드 및 MSA (마이크로 서비스 아키텍쳐)의 이해
소프트웨어 개발 트랜드 및 MSA (마이크로 서비스 아키텍쳐)의 이해
 
AWS Code 서비스 특집 - 아마존 DevOps와 CodeDeploy, CodePipeline (윤석찬)
AWS Code 서비스 특집 - 아마존 DevOps와 CodeDeploy, CodePipeline (윤석찬)AWS Code 서비스 특집 - 아마존 DevOps와 CodeDeploy, CodePipeline (윤석찬)
AWS Code 서비스 특집 - 아마존 DevOps와 CodeDeploy, CodePipeline (윤석찬)
 
Cloud migration pattern using microservices
Cloud migration pattern using microservicesCloud migration pattern using microservices
Cloud migration pattern using microservices
 
Intro to hpe helion stackato_paa_s
Intro to hpe helion stackato_paa_sIntro to hpe helion stackato_paa_s
Intro to hpe helion stackato_paa_s
 
[오픈테크넷서밋2022] 국내 PaaS(Kubernetes) Best Practice 및 DevOps 환경 구축 사례.pdf
[오픈테크넷서밋2022] 국내 PaaS(Kubernetes) Best Practice 및 DevOps 환경 구축 사례.pdf[오픈테크넷서밋2022] 국내 PaaS(Kubernetes) Best Practice 및 DevOps 환경 구축 사례.pdf
[오픈테크넷서밋2022] 국내 PaaS(Kubernetes) Best Practice 및 DevOps 환경 구축 사례.pdf
 
AWS re:Invent 특집(2) – 서버리스(Serverless) 마이크로서비스를 위한 일곱 가지 모범 사례 (윤석찬)
AWS re:Invent 특집(2) – 서버리스(Serverless) 마이크로서비스를 위한 일곱 가지 모범 사례 (윤석찬)AWS re:Invent 특집(2) – 서버리스(Serverless) 마이크로서비스를 위한 일곱 가지 모범 사례 (윤석찬)
AWS re:Invent 특집(2) – 서버리스(Serverless) 마이크로서비스를 위한 일곱 가지 모범 사례 (윤석찬)
 
HB Smith에서는 AWS 이렇게 사용한다
HB Smith에서는 AWS 이렇게 사용한다HB Smith에서는 AWS 이렇게 사용한다
HB Smith에서는 AWS 이렇게 사용한다
 
고객 경험을 통한 AWS 클라우드 이전을 위한 지름길 - 김효정 (AWS 솔루션즈 아키텍트)
고객 경험을 통한 AWS 클라우드 이전을 위한 지름길 - 김효정 (AWS 솔루션즈 아키텍트)고객 경험을 통한 AWS 클라우드 이전을 위한 지름길 - 김효정 (AWS 솔루션즈 아키텍트)
고객 경험을 통한 AWS 클라우드 이전을 위한 지름길 - 김효정 (AWS 솔루션즈 아키텍트)
 
Introduction of Mesosphere DCOS
Introduction of Mesosphere DCOSIntroduction of Mesosphere DCOS
Introduction of Mesosphere DCOS
 
[오픈소스컨설팅]Data Center to cloud - 최지웅 컨설팅코치, 오픈소스컨설팅
[오픈소스컨설팅]Data Center to cloud - 최지웅 컨설팅코치, 오픈소스컨설팅[오픈소스컨설팅]Data Center to cloud - 최지웅 컨설팅코치, 오픈소스컨설팅
[오픈소스컨설팅]Data Center to cloud - 최지웅 컨설팅코치, 오픈소스컨설팅
 
인프라 자동 배포를 위한 AWS CloudFormation 고급 활용법 - AWS Summit Seoul 2017
인프라 자동 배포를 위한 AWS CloudFormation 고급 활용법 - AWS Summit Seoul 2017인프라 자동 배포를 위한 AWS CloudFormation 고급 활용법 - AWS Summit Seoul 2017
인프라 자동 배포를 위한 AWS CloudFormation 고급 활용법 - AWS Summit Seoul 2017
 
사례들로 알아보는 컨테이너, 언제 어떻게 쓰면 좋을까? – 김성수 AWS 솔루션즈 아키텍트, 허준 AWS 어카운트 매니저, 이창명 선데이토...
사례들로 알아보는 컨테이너, 언제 어떻게 쓰면 좋을까? – 김성수 AWS 솔루션즈 아키텍트, 허준 AWS 어카운트 매니저, 이창명 선데이토...사례들로 알아보는 컨테이너, 언제 어떻게 쓰면 좋을까? – 김성수 AWS 솔루션즈 아키텍트, 허준 AWS 어카운트 매니저, 이창명 선데이토...
사례들로 알아보는 컨테이너, 언제 어떻게 쓰면 좋을까? – 김성수 AWS 솔루션즈 아키텍트, 허준 AWS 어카운트 매니저, 이창명 선데이토...
 

More from Amazon Web Services Korea

More from Amazon Web Services Korea (20)

AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2AWS Modern Infra with Storage Roadshow 2023 - Day 2
AWS Modern Infra with Storage Roadshow 2023 - Day 2
 
AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1AWS Modern Infra with Storage Roadshow 2023 - Day 1
AWS Modern Infra with Storage Roadshow 2023 - Day 1
 
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
사례로 알아보는 Database Migration Service : 데이터베이스 및 데이터 이관, 통합, 분리, 분석의 도구 - 발표자: ...
 
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
Amazon DocumentDB - Architecture 및 Best Practice (Level 200) - 발표자: 장동훈, Sr. ...
 
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
Amazon Elasticache - Fully managed, Redis & Memcached Compatible Service (Lev...
 
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
Internal Architecture of Amazon Aurora (Level 400) - 발표자: 정달영, APAC RDS Speci...
 
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
[Keynote] 슬기로운 AWS 데이터베이스 선택하기 - 발표자: 강민석, Korea Database SA Manager, WWSO, A...
 
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
Demystify Streaming on AWS - 발표자: 이종혁, Sr Analytics Specialist, WWSO, AWS :::...
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
 
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
Amazon OpenSearch - Use Cases, Security/Observability, Serverless and Enhance...
 
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
Enabling Agility with Data Governance - 발표자: 김성연, Analytics Specialist, WWSO,...
 
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
Amazon Redshift Deep Dive - Serverless, Streaming, ML, Auto Copy (New feature...
 
From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...From Insights to Action, How to build and maintain a Data Driven Organization...
From Insights to Action, How to build and maintain a Data Driven Organization...
 
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
[Keynote] Accelerating Business Outcomes with AWS Data - 발표자: Saeed Gharadagh...
 
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
Amazon DynamoDB - Use Cases and Cost Optimization - 발표자: 이혁, DynamoDB Special...
 
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
LG전자 - Amazon Aurora 및 RDS 블루/그린 배포를 이용한 데이터베이스 업그레이드 안정성 확보 - 발표자: 이은경 책임, L...
 
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
KB국민카드 - 클라우드 기반 분석 플랫폼 혁신 여정 - 발표자: 박창용 과장, 데이터전략본부, AI혁신부, KB카드│강병억, Soluti...
 
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
코리안리 - 데이터 분석 플랫폼 구축 여정, 그 시작과 과제 - 발표자: 김석기 그룹장, 데이터비즈니스센터, 메가존클라우드 ::: AWS ...
 
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
LG 이노텍 - Amazon Redshift Serverless를 활용한 데이터 분석 플랫폼 혁신 과정 - 발표자: 유재상 선임, LG이노...
 
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...
[Keynote] Data Driven Organizations with AWS Data - 발표자: Agnes Panosian, Head...
 

AWS 기반의 마이크로 서비스 아키텍쳐 구현 방안 :: 김필중 :: AWS Summit Seoul 20