soundcloud's toolbox for microservices

126

Upload: bora-tunca

Post on 14-Apr-2017

851 views

Category:

Software


3 download

TRANSCRIPT

Page 1: SoundCloud's Toolbox for Microservices
Page 2: SoundCloud's Toolbox for Microservices

SoundCloud’s Toolbox for Microservices

Page 3: SoundCloud's Toolbox for Microservices

SoundCloud is the largest online audio distribution platform

Page 4: SoundCloud's Toolbox for Microservices

12 HOURS OF AUDIOevery minute

Page 5: SoundCloud's Toolbox for Microservices

Bora Tunca

Joined SoundCloud 2.5 years ago

soundcloud.com front-end

client specific apis

core-engineering

@grandbora

Page 6: SoundCloud's Toolbox for Microservices

Mic

rose

rvic

es

0

20

40

60

80

100

120

2013 2014 2015 2016

Page 7: SoundCloud's Toolbox for Microservices

Architecture

Productivity

Monitoring

Page 8: SoundCloud's Toolbox for Microservices

FINAGLE

Page 9: SoundCloud's Toolbox for Microservices

https://twitter.github.io/finagle/

Page 10: SoundCloud's Toolbox for Microservices

Finagle

Future

Services

Filters

https://monkey.org/~marius/funsrv.pdfYour Server as a Function

Page 11: SoundCloud's Toolbox for Microservices

Service

Req Future[Rep]

Req => Future[Rep]Service

Page 12: SoundCloud's Toolbox for Microservices

Service

Req Future[Rep]ReqA Future[RepA]

(ReqA, Service) => Future[RepA]Filter

Filter

Page 13: SoundCloud's Toolbox for Microservices

Service

Req Future[Rep]ReqA Future[RepA]

(ReqA, Service) => Future[RepA]Filter

Filter + Service

Page 14: SoundCloud's Toolbox for Microservices

val service = new ExceptionFilter andThen new HeaderFilter andThen new HttpTimeoutFilter(Duration(1, TimeUnit.SECONDS)) andThen new RestService()

Page 15: SoundCloud's Toolbox for Microservices

Toolbox

Finagle

Page 16: SoundCloud's Toolbox for Microservices

CLIENT SPECIFIC APIS

Page 17: SoundCloud's Toolbox for Microservices

MOTHERSHIP

Public API

messages

likes

Page 18: SoundCloud's Toolbox for Microservices

Api-v2 Api-mobile Api-embedded Public API

Page 19: SoundCloud's Toolbox for Microservices

Api-v2 Api-mobile Api-embedded Public API

messages

MOTHERSHIPlikes

search

stats

images

Page 20: SoundCloud's Toolbox for Microservices

Backend For Fronted

Page 21: SoundCloud's Toolbox for Microservices

Toolbox

Client Specific ApisFinagle

Page 22: SoundCloud's Toolbox for Microservices

STRANGLER PATTERN

Page 23: SoundCloud's Toolbox for Microservices
Page 24: SoundCloud's Toolbox for Microservices
Page 25: SoundCloud's Toolbox for Microservices
Page 26: SoundCloud's Toolbox for Microservices
Page 27: SoundCloud's Toolbox for Microservices
Page 28: SoundCloud's Toolbox for Microservices

Api-v2 Api-mobile Api-embedded Public API

messages

MOTHERSHIPlikes

search

stats

images

Page 29: SoundCloud's Toolbox for Microservices

Api-v2 Api-mobile Api-embedded Public API

messages

MOTHERSHIPlikes

search

stats

images

Page 30: SoundCloud's Toolbox for Microservices

Api-v2 Api-mobile Api-embedded Public API

messages

MOTHERSHIPlikes

search

stats

images

Page 31: SoundCloud's Toolbox for Microservices

MOTHERSHIP

Legacy Public API

Page 32: SoundCloud's Toolbox for Microservices

MOTHERSHIP

Legacy Public API

Public API Strangler

Page 33: SoundCloud's Toolbox for Microservices

MOTHERSHIP

Legacy Public API

Public API Strangler

messages

likes

search

Page 34: SoundCloud's Toolbox for Microservices

MOTHERSHIP

Legacy Public API

Public API Strangler

messages

likes

search

stats

images

Page 35: SoundCloud's Toolbox for Microservices

MOTHERSHIP

Legacy Public API

Public API Strangler

messages

likes

search

stats

images

Page 36: SoundCloud's Toolbox for Microservices

Toolbox

Strangler PatternClient Specific ApisFinagle

Page 37: SoundCloud's Toolbox for Microservices

CRITICAL PATH

Page 38: SoundCloud's Toolbox for Microservices

BFF

Page 39: SoundCloud's Toolbox for Microservices

BFF authentication geo location features

1

Page 40: SoundCloud's Toolbox for Microservices

BFF

messages

MOTHERSHIPlikes

search

stats

images

2

authentication geo location features

1

Page 41: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

authentication geo location features

Page 42: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

authentication geo location features

Page 43: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

authentication geo location features

Page 44: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

authentication geo location features

Page 45: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

authentication geo location features

Page 46: SoundCloud's Toolbox for Microservices

BFF

messages

MOTHERSHIPlikes

search

stats

images

2

authentication geo location features

1

Page 47: SoundCloud's Toolbox for Microservices

Microservices

Page 48: SoundCloud's Toolbox for Microservices

BFFs

Microservices

Page 49: SoundCloud's Toolbox for Microservices

Client ApplicationsBFFs

Microservices

Page 50: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

authentication geo location features

BFF

BFFBFF

BFFBFF

Page 51: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

authentication geo location features

BFF

BFFBFF

BFFBFF

Critical Path

Page 52: SoundCloud's Toolbox for Microservices

On critical path…

Page 53: SoundCloud's Toolbox for Microservices

Handle failures gracefully

On critical path…

Page 54: SoundCloud's Toolbox for Microservices

Handle failures gracefully

Be ready for traffic bursts

On critical path…

Page 55: SoundCloud's Toolbox for Microservices

Toolbox

Critical Path

Client Specific ApisStrangler Pattern

Finagle

Page 56: SoundCloud's Toolbox for Microservices

SERVICE LAYERING

Page 57: SoundCloud's Toolbox for Microservices

Public API

messages

likesMOTHERSHIP

Page 58: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

Page 59: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

BFF

Page 60: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

BFF

Page 61: SoundCloud's Toolbox for Microservices

messages

MOTHERSHIP

BFF

likes

search

stats

images

tracks

BFF

Page 62: SoundCloud's Toolbox for Microservices
Page 63: SoundCloud's Toolbox for Microservices

images userstracks

Foundation Layer

Page 64: SoundCloud's Toolbox for Microservices

images userstracks

Foundation Layer

playlistsstream profiles

Value Added Layer

Page 65: SoundCloud's Toolbox for Microservices

images userstracks

Foundation Layer

playlistsstream profiles

Value Added Layer

Page 66: SoundCloud's Toolbox for Microservices

images userstracks

Foundation Layer

playlistsstream profiles

Value Added Layer

Page 67: SoundCloud's Toolbox for Microservices

images userstracks

Foundation Layer

playlistsstream profiles

Value Added Layer

BFF BFF

Edge Layer

Page 68: SoundCloud's Toolbox for Microservices

images userstracks

Foundation Layer

playlistsstream profiles

Value Added Layer

BFF BFF

Edge Layer

Page 69: SoundCloud's Toolbox for Microservices

images userstracks

Foundation Layer

playlistsstream profiles

Value Added Layer

MOTHERSHIP

BFF BFF

Edge Layer

Page 70: SoundCloud's Toolbox for Microservices

Toolbox

Service Layering

Client Specific ApisStrangler PatternCritical Path

Finagle

Page 71: SoundCloud's Toolbox for Microservices

HUMANE REGISTRY

Page 72: SoundCloud's Toolbox for Microservices

Mic

rose

rvic

es

0

20

40

60

80

100

120

2013 2014 2015 2016

Page 73: SoundCloud's Toolbox for Microservices

http://martinfowler.com/bliki/HumaneRegistry.html

Page 74: SoundCloud's Toolbox for Microservices

Humane Registry

Page 75: SoundCloud's Toolbox for Microservices

Oriented around people

Humane Registry

Page 76: SoundCloud's Toolbox for Microservices

Oriented around people

Don't rely on people to stay up to date

Humane Registry

Page 77: SoundCloud's Toolbox for Microservices

Oriented around people

Don't rely on people to stay up to date

Expect humans to read and contribute

Humane Registry

Page 78: SoundCloud's Toolbox for Microservices

SERVICES DIRECTORY

Page 79: SoundCloud's Toolbox for Microservices
Page 80: SoundCloud's Toolbox for Microservices

Github

PagerDuty

Distributed Tracing

Prometheus

Deployment Pipeline

Eng-doc

Live Configs

Page 81: SoundCloud's Toolbox for Microservices

Toolbox

Humane Registry

Client Specific ApisStrangler PatternCritical PathService Layering

Finagle

Page 82: SoundCloud's Toolbox for Microservices

PROMETHEUS

Page 83: SoundCloud's Toolbox for Microservices

Prometheus

Scalable data collection

Operational simplicity

Multi-dimensional data

Powerful query language

https://developers.soundcloud.com/blog/prometheus-monitoring-at-soundcloudhttp://prometheus.io/

Page 84: SoundCloud's Toolbox for Microservices

Prometheus

My Service

Page 85: SoundCloud's Toolbox for Microservices

Prometheus

My Service

http://instance-url/metrics

Page 86: SoundCloud's Toolbox for Microservices

Prometheus

My Service

http://instance-url/metrics

jvm client

Page 87: SoundCloud's Toolbox for Microservices

Prometheus

My Service

jvm client

My Service

jvm client

My Service

jvm client

My Service

jvm client

My Service

jvm client

My Service

jvm client

My Service

jvm client

My Service

jvm client

My Service

jvm client

My Service

jvm client

Page 88: SoundCloud's Toolbox for Microservices

val requestCount = telemetry.counter("outgoing_http_requests_total", "A counter for the HTTP requests", "service", "method", "status", "statusClass")

send

requestCount.labels( serviceName, request.getMethod, response.getStatus, response.getStatusClass).inc()

Page 89: SoundCloud's Toolbox for Microservices

val requestCount = telemetry.counter("outgoing_http_requests_total", "A counter for the HTTP requests", "service", "method", "status", "statusClass")

send

requestCount.labels( serviceName, request.getMethod, response.getStatus, response.getStatusClass).inc()

query SUM(rate(outgoing_http_requests_total{statusClass="5xx"}[10m])) by (service, method, status)

Page 90: SoundCloud's Toolbox for Microservices

Toolbox

Client Specific ApisStrangler PatternCritical PathService LayeringHumane RegistryPrometheus

Finagle

Page 91: SoundCloud's Toolbox for Microservices

SERVICE LEVEL OBJECTIVES

Page 92: SoundCloud's Toolbox for Microservices
Page 93: SoundCloud's Toolbox for Microservices

ERROR_RATE=0.0001

Page 94: SoundCloud's Toolbox for Microservices

ERROR_RATE=0.0001P99_LATENCY=0.500

Page 95: SoundCloud's Toolbox for Microservices

ERROR_RATE=0.0001P99_LATENCY=0.500AVAILABILITY_TARGET=0.99999

Page 96: SoundCloud's Toolbox for Microservices

ERROR_RATE=0.0001P99_LATENCY=0.500AVAILABILITY_TARGET=0.99999

Page 97: SoundCloud's Toolbox for Microservices

Toolbox

Service Level ObjectivesPrometheus

Client Specific ApisStrangler PatternCritical PathService LayeringHumane Registry

Finagle

Page 98: SoundCloud's Toolbox for Microservices

RECAP

Page 99: SoundCloud's Toolbox for Microservices

Toolbox

Service Level ObjectivesPrometheus

Client Specific ApisStrangler PatternCritical PathService LayeringHumane Registry

Finagle

Page 100: SoundCloud's Toolbox for Microservices

backstage.soundcloud.com

@pcalcado - How we ended up with microservices

@starcoffe - Why SoundCloud stopped using its own public API

InfoQ - Moving from a Monolith to Microservices at SoundCloud

@SoundCloudDev

InfoQ - Microservices Evolution at Soundcloud

Sam Newman - Backends for Frontends

Page 101: SoundCloud's Toolbox for Microservices

[email protected]

https://soundcloud.com/jobs

Thank you!

@grandbora

Page 102: SoundCloud's Toolbox for Microservices
Page 103: SoundCloud's Toolbox for Microservices
Page 104: SoundCloud's Toolbox for Microservices
Page 105: SoundCloud's Toolbox for Microservices
Page 106: SoundCloud's Toolbox for Microservices
Page 107: SoundCloud's Toolbox for Microservices
Page 108: SoundCloud's Toolbox for Microservices
Page 109: SoundCloud's Toolbox for Microservices
Page 110: SoundCloud's Toolbox for Microservices
Page 111: SoundCloud's Toolbox for Microservices
Page 112: SoundCloud's Toolbox for Microservices
Page 113: SoundCloud's Toolbox for Microservices
Page 114: SoundCloud's Toolbox for Microservices
Page 115: SoundCloud's Toolbox for Microservices
Page 116: SoundCloud's Toolbox for Microservices
Page 117: SoundCloud's Toolbox for Microservices
Page 118: SoundCloud's Toolbox for Microservices
Page 119: SoundCloud's Toolbox for Microservices
Page 120: SoundCloud's Toolbox for Microservices
Page 121: SoundCloud's Toolbox for Microservices
Page 122: SoundCloud's Toolbox for Microservices
Page 123: SoundCloud's Toolbox for Microservices
Page 124: SoundCloud's Toolbox for Microservices
Page 125: SoundCloud's Toolbox for Microservices
Page 126: SoundCloud's Toolbox for Microservices