chatting server on aws

32
Chatting Server on AWS 발란스커리어(스터디서치) CTO 김승연

Upload: aws-korea-usergroup-aws

Post on 07-Apr-2017

1.515 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: Chatting Server on AWS

Chatting Server on AWS발란스커리어(스터디서치) CTO

김승연

Page 2: Chatting Server on AWS

3회 세미나

Page 3: Chatting Server on AWS

DynamoDB 삽질기

Page 4: Chatting Server on AWS

DynamoDB python wrapper

Page 5: Chatting Server on AWS

https://github.com/teddychoi/BynamoDB

Page 6: Chatting Server on AWS

오늘

Page 7: Chatting Server on AWS

dnachat

Page 8: Chatting Server on AWS

Chatting Server on AWS

Page 9: Chatting Server on AWS

https://github.com/BalanceCareerInc/dnachat

Page 10: Chatting Server on AWS

Python / Twisted / bson

Page 11: Chatting Server on AWS

일단 latency가 어떻게 되나?

Page 12: Chatting Server on AWS

패킷이 도쿄를 갔다 오는데!

Page 13: Chatting Server on AWS

Ucloud vs AWS ap-northeast-1

Min Max Avg

유선 18 55 26

무선 113 312 199

Min Max Avg

유선 52 70 56.84

무선 160 360 260

Page 14: Chatting Server on AWS

Ucloud가 빨랐으나 AWS도 쓸만 하더라

Page 15: Chatting Server on AWS

한 번 보고 가자

Page 16: Chatting Server on AWS

•Live Chatting

•Logging

•Push Notification

Page 17: Chatting Server on AWS

둘 다 온라인일 때 – Live Chatting

Page 18: Chatting Server on AWS

Performance

• EC2 t2.medium 2 대

• ElastiCache redis t1.micro 1 대

• 분당 8만 트랜잭션 (A -> AWS -> B -> AWS -> A)

Page 19: Chatting Server on AWS

ElastiCache

LiveChatServer

LiveChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Message

Publish

Page 20: Chatting Server on AWS

ElastiCache

LiveChatServer

LiveChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Message

SubscribeMessage

Page 21: Chatting Server on AWS

ElastiCache

LiveChatServer

LiveChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Ack

Publish

Page 22: Chatting Server on AWS

ElastiCache

LiveChatServer

LiveChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Ack

SubscribeAck

Page 23: Chatting Server on AWS

늦게라도 메시지를 읽자 - Logging

Page 24: Chatting Server on AWS

LiveChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Message

LiveChatServer

Log Server

ElastiCache

Amazon SQS

Page 25: Chatting Server on AWS

LiveChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Message

LiveChatServer

Log Server

Amazon SQS

DynamoDB

Page 26: Chatting Server on AWS

지금 메시지가 왔어 – Push Notification

Page 27: Chatting Server on AWS

LiveChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Message

LiveChatServer

Log Server

ElastiCache

Amazon SQS

Page 28: Chatting Server on AWS

LiveChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Message

LiveChatServer

Log Server

Amazon SQS

Amazon SNS

Page 29: Chatting Server on AWS

채팅서버에 명령내리기 – Chat API

Page 30: Chatting Server on AWS

LiveChatServer

Auto Scaling group

LiveChatServer

Web Server

Amazon SQS

Page 31: Chatting Server on AWS

ElastiCache

ChatServer

ChatServer

ElasticLoad Balancer

Auto Scaling group

mobile client

mobile client

Message

Logging CommandNotification

Amazon SNS

Page 32: Chatting Server on AWS

Q&A