SlideShare a Scribd company logo
Nathan Handler
nhandler@yelp.com / @nathanhandler
PaaSTA
Running Applications at Yelp
● Nathan Handler / @nathanhandler
● Site Reliability Engineer at Yelp
● Ubuntu/Debian Developer and freenode staff
● PaaSTA Developer
Who am I?
2
Yelp’s Mission
Connecting people with great
local businesses.
3
Yelp Stats
As of Q1 2016
90M 3270%102M
4
● Monolithic Python application (~3M LoC)
● Builds/deployments took a long time
○ Bottleneck on how often we can deploy
● Mistakes are painful
○ Large impact
○ Difficult to find
○ Slow to fix
History
5
● Split features into different applications
● Smaller services allowed for faster pushes
● Easier to reason about issues
● Able to scale services independently
Service Oriented Architecture v1
6
● Standalone application
● Stateless
● Separate git repository
● Typically at Yelp:
○ HTTP API
○ Python, Pyramid, uWSGI
○ virtualenv
What is a service?
7
● Statically defined list of hosts to deploy a service on
● Operations decides which hosts to deploy to
● Monitoring manually configured in Nagios
● Manual deployment system via rsync
Deploying Services v1
8
3x
2x
Does Not Scale
9
1x
3x
2x
Does Not Scale
10
1x
● Yelp's Platform as a Service
● Builds, Deploys, Connects, and Monitors services
● Glue around existing and established open source
tools
PaaSTA
11
https://github.com/yelp/paasta
#paasta on irc.freenode.net
12
PaaSTA Components
13
Docker
Registry
Developer
git push
git pull
git push
docker push
13
Marathon
Sensu
PaaSTA Components
14
Developer
git push
14
.
├── Dockerfile
├── htdocs
│ ├── index.php
│ └── status
└── Makefile
15
A simple service
DOCKER_TAG ?= $(USER)-dev
test:
@echo 'Unit testing'
itest: cook-image
paasta local-run --healthcheck --service devops
cook-image:
docker build -t $(DOCKER_TAG) .
16
$ cat Makefile
DOCKER_TAG ?= $(USER)-dev
test:
@echo 'Unit testing'
itest: cook-image
paasta local-run --healthcheck --service devops
cook-image:
docker build -t $(DOCKER_TAG) .
17
$ cat Makefile
• Containers: like lightweight VMs
• Provides a language (Dockerfile) for describing
container image
• Reproducible builds (mostly)
• Provides software flexibility
18
Docker
docker.com
FROM ubuntu:xenial
MAINTAINER Nathan Handler <nhandler@yelp.com>
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install 
apache2 
libapache2-mod-php
ENV APACHE_RUN_USER www-data
ENV APACHE_RUN_GROUP www-data
ENV APACHE_LOG_DIR /var/log/apache2
ENV APACHE_LOCK_DIR /var/lock/apache2
ENV APACHE_PID_FILE /var/run/apache2.pid
RUN rm -f /var/www/html/index.html
COPY htdocs /var/www/html/
CMD ["/usr/sbin/apache2", "-D", "FOREGROUND", "-C", "listen 8888"]
EXPOSE 8888 19
$ cat Dockerfile
✓ yelpsoa-config directory for devops found in /nail/etc/serv
✓ deploy.yaml exists for a Jenkins pipeline
✗ No 'security-check' entry was found in your deploy.yaml.
Please add a security-check entry *AFTER* the itest entry in d
so your docker image can be checked against known security vul
More info: http://servicedocs.yelpcorp.com/docs/paasta_tools/c
✗ No 'performance-check' entry was found in your deploy.yaml.
Please add a performance-check entry *AFTER* the security-chec
so your docker image can be checked for performance regression
More info: http://servicedocs.yelpcorp.com/docs/paasta_tools/c
✓ Jenkins build pipeline found
✓ Git repo found in the expected location.
✓ Found Dockerfile
✓ A Makefile is present
✓ The Makefile contains a tab character
✓ The Makefile contains a docker tag
✓ The Makefile responds to `make cook-image`
✓ The Makefile responds to `make itest`
✓ The Makefile responds to `make test`
✓ Found marathon.yaml file.
✓ All entries in deploy.yaml correspond to a marathon or chro
✓ All marathon instances have a corresponding deploy.yaml ent
✓ monitoring.yaml found for Sensu monitoring
✓ Your service uses Sensu and team 'nhandler' will get alerts
✓ Found smartstack.yaml file
✓ Instance 'demo' of your service is using smartstack port 20
balanced
✓ Successfully validated schema: marathon-nova-devc.yaml
20
$ paasta check
PaaSTA Components
21
Developer
git push
git pull
21
PaaSTA Components
22
Docker
Registry
Developer
git push
git pull
git push
docker push
22
---
pipeline:
- instancename: itest
- instancename: push-to-registry
- instancename: dev.everything
23
$ cat deploy.yaml
Jenkins Pipeline
24
paasta-nova-devc.demo-20160503T231914-deploy
paasta-nova-devc.demo-20160503T234021-stop
paasta-nova-devc.demo-20160503T234202-start
25
$ git tag
• Describe end goal, not path
• Helps us achieve fault tolerance.
"Deploy 6de16ff2 to prod"
vs.
"Commit 6de16ff2 should be running in prod"
Gas pedal vs. Cruise Control
26
Declarative control
Description: A demo PaaSTA service for OSCON 2016
External Link: http://conferences.oreilly.com/oscon/open-source-
us/public/schedule/detail/49358
Monitored By: team nhandler
Runbook: Please set a `runbook` field in your monitoring.yaml. Like "y/rb-m
Docs: https://trac.yelpcorp.com/wiki/HowToService/Monitoring/monitoring.yam
Git Repo: git@git.yelpcorp.com:services/devops
Jenkins Pipeline: https://jenkins.yelpcorp.com/view/services-devops
Deployed to the following clusters:
- nova-devc (N/A)
Smartstack endpoint(s):
- http://169.254.255.254:20973 (demo)
Dashboard(s):
- https://uchiwa.yelpcorp.com/#/events?q=devops (Sensu Alerts)
27
$ paasta info
PaaSTA Components
28
Docker
Registry
Developer
git push
git pull
git push
docker push
28
Marathon
• Mesos is an "SDK for distributed systems", not
batteries-included.
• Requires a framework
• Marathon
• Chronos for scheduled batches
• Can run many frameworks on the same cluster
• Supports Docker as task executor
29
mesosphere.io
mesos.apache.org
Scheduling: Mesos + Marathon
---
demo:
cpus: 0.1
instances: 3
mem: 500
monitoring:
alert_after: 0m
bounce_method: brutal
deploy_group: dev.everything
30
$ cat marathon-nova-devc.yaml
PaaSTA Components
31
Docker
Registry
Developer
git push
git pull
git push
docker push
31
Marathon
● Brutal: Stops old versions and starts the new
version, without regard to safety.
● Upthendown: Brings up the new version of the
service and waits until all instances are healthy
before stopping the old versions.
● Downthenup: Stops any old versions and waits for
them to die before starting the new version.
● Crossover: Starts the new version, and gradually kills
instances of the old versions as new instances
become healthy.
Bounce Strategies
32
33
34
35
36
Discovery in PaaSTA: Smartstack
mesos
slave
box2
client
nerve
HAProxy
synapse
box1
service
nerve
mesos
slave
synapse
HAProxy
ZooKeeperMetadata
HTTP request
healthcheck
37
Latency Zones
Superregion
Region
Habitat
---
demo:
advertise: [region]
discover: region
proxy_port: 20973
38
$ cat smartstack.yaml
Pipeline: https://jenkins.yelpcorp.com/view/services-devops
cluster: nova-devc
instance: demo
Git sha: 6de16ff2
State: Running - Desired state: Started
Marathon: Healthy - up with (3/3) instances. Status: Running.
Mesos: Healthy - (3/3) tasks in the TASK_RUNNING state.
Smartstack:
Name LastCheck LastChange Status
useast1-devc - Healthy - in haproxy with (3/3) total backends UP in this namespace.
39
$ paasta status
Cluster: mesosstage
Dashboards:
Marathon RO: http://marathon.paasta-mesosstage.yelp/
Smartstack: http://paasta-mesosstage.yelp:3212
Chronos RO: http://chronos.paasta-mesosstage.yelp/
Mesos: http://mesos.paasta-mesosstage.yelp
Mesos Status: OK
quorum: masters: 3 configured quorum: 2
frameworks:
framework: chronos-2.4.0 count: 1
framework: marathon count: 1
CPUs: 1.00 / 7 in use (14.29%)
Memory: 3.03 / 42.85GB in use (7.07%)
Disk: 10.00 / 153.81GB in use (6.50%)
tasks: running: 9 staging: 1 starting: 0
slaves: active: 7 inactive: 0
Marathon Status: OK
marathon apps: 5
marathon tasks: 9
marathon deployments: 0
Chronos Status: OK
Enabled chronos jobs: 1 40
$ paasta metastatus
PaaSTA Components
41
Docker
Registry
Developer
git push
git pull
git push
docker push
41
Marathon
Sensu
---
team: nhandler
page: true
notification_email: nhandler+devops@yelp.com
42
$ cat monitoring.yaml
43
PaaSTA Components
44
Docker
Registry
Developer
git push
git pull
git push
docker push
44
Marathon
Sensu
Autoscaling
45
@YelpEngineering
fb.com/YelpEngineers
engineeringblog.yelp.com
github.com/yelp
46

More Related Content

PDF
Advanced Docker Developer Workflows on MacOS X and Windows
Anil Madhavapeddy
 
PDF
OSCON: Incremental Revolution - What Docker learned from the open-source fire...
Docker, Inc.
 
PDF
OSCON: Better Collaboration through Tooling
Docker, Inc.
 
PDF
Unikernels: Rise of the Library Hypervisor
Anil Madhavapeddy
 
PDF
Container Performance Analysis
Brendan Gregg
 
PDF
Solving Real World Production Problems with Docker
Marc Campbell
 
PDF
runC: The little engine that could (run Docker containers) by Docker Captain ...
Docker, Inc.
 
PPTX
Cgroups, namespaces and beyond: what are containers made from?
Docker, Inc.
 
Advanced Docker Developer Workflows on MacOS X and Windows
Anil Madhavapeddy
 
OSCON: Incremental Revolution - What Docker learned from the open-source fire...
Docker, Inc.
 
OSCON: Better Collaboration through Tooling
Docker, Inc.
 
Unikernels: Rise of the Library Hypervisor
Anil Madhavapeddy
 
Container Performance Analysis
Brendan Gregg
 
Solving Real World Production Problems with Docker
Marc Campbell
 
runC: The little engine that could (run Docker containers) by Docker Captain ...
Docker, Inc.
 
Cgroups, namespaces and beyond: what are containers made from?
Docker, Inc.
 

What's hot (20)

PDF
Docker: the road ahead
shykes
 
PDF
Breaking the RpiDocker challenge
Nicolas De Loof
 
PPTX
Using functional programming within an industrial product group: perspectives...
Anil Madhavapeddy
 
PDF
Introduction to Docker, December 2014 "Tour de France" Edition
Jérôme Petazzoni
 
PDF
From development environments to production deployments with Docker, Compose,...
Jérôme Petazzoni
 
ODP
Why Docker? Dayton PHP, April 2017
Chris Tankersley
 
PPTX
Container Torture: Run any binary, in any container
Docker, Inc.
 
PDF
Using Docker in the Real World
Tim Haak
 
PDF
Docker Online Meetup #31: Unikernels
Docker, Inc.
 
PDF
[KubeCon NA 2018] Telepresence Deep Dive Session - Rafael Schloming & Luke Sh...
Ambassador Labs
 
PDF
What Have Namespaces Done for you Lately? Liz Rice, Aqua Security
Docker, Inc.
 
PDF
Docker Tips And Tricks at the Docker Beijing Meetup
Jérôme Petazzoni
 
PDF
Containers: from development to production at DevNation 2015
Jérôme Petazzoni
 
PPTX
Docker introduction
dotCloud
 
PDF
Containerd: Building a Container Supervisor by Michael Crosby
Docker, Inc.
 
PDF
Intro to Docker - London meetup oct. 2013
stevedomin
 
PDF
Leveraging the Power of containerd Events - Evan Hazlett
Docker, Inc.
 
PDF
LinuxKit Deep Dive
Docker, Inc.
 
PDF
Docker: Testing to Production
Edwin Fuquen
 
PDF
Techtalks: taking docker to production
muayyad alsadi
 
Docker: the road ahead
shykes
 
Breaking the RpiDocker challenge
Nicolas De Loof
 
Using functional programming within an industrial product group: perspectives...
Anil Madhavapeddy
 
Introduction to Docker, December 2014 "Tour de France" Edition
Jérôme Petazzoni
 
From development environments to production deployments with Docker, Compose,...
Jérôme Petazzoni
 
Why Docker? Dayton PHP, April 2017
Chris Tankersley
 
Container Torture: Run any binary, in any container
Docker, Inc.
 
Using Docker in the Real World
Tim Haak
 
Docker Online Meetup #31: Unikernels
Docker, Inc.
 
[KubeCon NA 2018] Telepresence Deep Dive Session - Rafael Schloming & Luke Sh...
Ambassador Labs
 
What Have Namespaces Done for you Lately? Liz Rice, Aqua Security
Docker, Inc.
 
Docker Tips And Tricks at the Docker Beijing Meetup
Jérôme Petazzoni
 
Containers: from development to production at DevNation 2015
Jérôme Petazzoni
 
Docker introduction
dotCloud
 
Containerd: Building a Container Supervisor by Michael Crosby
Docker, Inc.
 
Intro to Docker - London meetup oct. 2013
stevedomin
 
Leveraging the Power of containerd Events - Evan Hazlett
Docker, Inc.
 
LinuxKit Deep Dive
Docker, Inc.
 
Docker: Testing to Production
Edwin Fuquen
 
Techtalks: taking docker to production
muayyad alsadi
 
Ad

Similar to PaaSTA: Running applications at Yelp (20)

PDF
PaaSTA: Autoscaling at Yelp
Nathan Handler
 
PDF
DevSecCon London 2017: Permitting agility whilst enforcing security by Alina ...
DevSecCon
 
PDF
DockerCon EU 2015: The Glue is the Hard Part: Making a Production-Ready PaaS
Docker, Inc.
 
PDF
The Glue is the Hard Part: Making a Production-Ready PaaS
EvanKrall
 
PDF
Paasta: Application Delivery at Yelp
C4Media
 
PDF
How Yelp uses Mesos to Power its SOA Infrastructure
EvanKrall
 
PPTX
SDLC Using Docker for Fun and Profit
dantheelder
 
PDF
Priming Your Teams For Microservice Deployment to the Cloud
Matt Callanan
 
PPTX
CT Software Developers Meetup: Using Docker and Vagrant Within A GitHub Pull ...
E. Camden Fisher
 
PDF
Leonid Vasilyev "Building, deploying and running production code at Dropbox"
IT Event
 
PDF
"Building, deploying and running production code at Dropbox" Васильев Леонид,...
it-people
 
PDF
Automated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStack
NTT Communications Technology Development
 
PDF
Production Ready Docker Stack for Alfresco Deployments
Roxana Angheluta
 
PDF
DCSF 19 Building Your Development Pipeline
Docker, Inc.
 
PDF
The (mutable) config management showdown
Bob Killen
 
KEY
From Dev to DevOps - ApacheCON NA 2011
Carlos Sanchez
 
PDF
From Dev to DevOps - Codemotion ES 2012
Carlos Sanchez
 
ODP
Docker in prod
Ariel Moskovich
 
PDF
O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...
Ambassador Labs
 
PDF
Modernizing Java Apps with Docker
Docker, Inc.
 
PaaSTA: Autoscaling at Yelp
Nathan Handler
 
DevSecCon London 2017: Permitting agility whilst enforcing security by Alina ...
DevSecCon
 
DockerCon EU 2015: The Glue is the Hard Part: Making a Production-Ready PaaS
Docker, Inc.
 
The Glue is the Hard Part: Making a Production-Ready PaaS
EvanKrall
 
Paasta: Application Delivery at Yelp
C4Media
 
How Yelp uses Mesos to Power its SOA Infrastructure
EvanKrall
 
SDLC Using Docker for Fun and Profit
dantheelder
 
Priming Your Teams For Microservice Deployment to the Cloud
Matt Callanan
 
CT Software Developers Meetup: Using Docker and Vagrant Within A GitHub Pull ...
E. Camden Fisher
 
Leonid Vasilyev "Building, deploying and running production code at Dropbox"
IT Event
 
"Building, deploying and running production code at Dropbox" Васильев Леонид,...
it-people
 
Automated Deployment & Benchmarking with Chef, Cobbler and Rally for OpenStack
NTT Communications Technology Development
 
Production Ready Docker Stack for Alfresco Deployments
Roxana Angheluta
 
DCSF 19 Building Your Development Pipeline
Docker, Inc.
 
The (mutable) config management showdown
Bob Killen
 
From Dev to DevOps - ApacheCON NA 2011
Carlos Sanchez
 
From Dev to DevOps - Codemotion ES 2012
Carlos Sanchez
 
Docker in prod
Ariel Moskovich
 
O'Reilly Software Architecture Conference London 2017: Building Resilient Mic...
Ambassador Labs
 
Modernizing Java Apps with Docker
Docker, Inc.
 
Ad

Recently uploaded (20)

PDF
Salesforce Implementation Services Provider.pdf
VALiNTRY360
 
PPTX
Explanation about Structures in C language.pptx
Veeral Rathod
 
PPTX
Presentation about variables and constant.pptx
safalsingh810
 
PDF
49784907924775488180_LRN2959_Data_Pump_23ai.pdf
Abilash868456
 
PDF
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
PDF
Enhancing Healthcare RPM Platforms with Contextual AI Integration
Cadabra Studio
 
PDF
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
PPTX
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
PDF
ChatPharo: an Open Architecture for Understanding How to Talk Live to LLMs
ESUG
 
PPTX
Presentation about variables and constant.pptx
kr2589474
 
PPT
Why Reliable Server Maintenance Service in New York is Crucial for Your Business
Sam Vohra
 
PDF
Protecting the Digital World Cyber Securit
dnthakkar16
 
PPTX
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
PDF
Bandai Playdia The Book - David Glotz
BluePanther6
 
PPTX
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
PDF
49785682629390197565_LRN3014_Migrating_the_Beast.pdf
Abilash868456
 
PPTX
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
PPTX
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
PDF
An Experience-Based Look at AI Lead Generation Pricing, Features & B2B Results
Thomas albart
 
PPT
Activate_Methodology_Summary presentatio
annapureddyn
 
Salesforce Implementation Services Provider.pdf
VALiNTRY360
 
Explanation about Structures in C language.pptx
Veeral Rathod
 
Presentation about variables and constant.pptx
safalsingh810
 
49784907924775488180_LRN2959_Data_Pump_23ai.pdf
Abilash868456
 
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
Enhancing Healthcare RPM Platforms with Contextual AI Integration
Cadabra Studio
 
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
ChatPharo: an Open Architecture for Understanding How to Talk Live to LLMs
ESUG
 
Presentation about variables and constant.pptx
kr2589474
 
Why Reliable Server Maintenance Service in New York is Crucial for Your Business
Sam Vohra
 
Protecting the Digital World Cyber Securit
dnthakkar16
 
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
Bandai Playdia The Book - David Glotz
BluePanther6
 
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
49785682629390197565_LRN3014_Migrating_the_Beast.pdf
Abilash868456
 
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
An Experience-Based Look at AI Lead Generation Pricing, Features & B2B Results
Thomas albart
 
Activate_Methodology_Summary presentatio
annapureddyn
 

PaaSTA: Running applications at Yelp

  • 1. Nathan Handler [email protected] / @nathanhandler PaaSTA Running Applications at Yelp
  • 2. ● Nathan Handler / @nathanhandler ● Site Reliability Engineer at Yelp ● Ubuntu/Debian Developer and freenode staff ● PaaSTA Developer Who am I? 2
  • 3. Yelp’s Mission Connecting people with great local businesses. 3
  • 4. Yelp Stats As of Q1 2016 90M 3270%102M 4
  • 5. ● Monolithic Python application (~3M LoC) ● Builds/deployments took a long time ○ Bottleneck on how often we can deploy ● Mistakes are painful ○ Large impact ○ Difficult to find ○ Slow to fix History 5
  • 6. ● Split features into different applications ● Smaller services allowed for faster pushes ● Easier to reason about issues ● Able to scale services independently Service Oriented Architecture v1 6
  • 7. ● Standalone application ● Stateless ● Separate git repository ● Typically at Yelp: ○ HTTP API ○ Python, Pyramid, uWSGI ○ virtualenv What is a service? 7
  • 8. ● Statically defined list of hosts to deploy a service on ● Operations decides which hosts to deploy to ● Monitoring manually configured in Nagios ● Manual deployment system via rsync Deploying Services v1 8
  • 11. ● Yelp's Platform as a Service ● Builds, Deploys, Connects, and Monitors services ● Glue around existing and established open source tools PaaSTA 11 https://github.com/yelp/paasta #paasta on irc.freenode.net
  • 12. 12
  • 13. PaaSTA Components 13 Docker Registry Developer git push git pull git push docker push 13 Marathon Sensu
  • 15. . ├── Dockerfile ├── htdocs │ ├── index.php │ └── status └── Makefile 15 A simple service
  • 16. DOCKER_TAG ?= $(USER)-dev test: @echo 'Unit testing' itest: cook-image paasta local-run --healthcheck --service devops cook-image: docker build -t $(DOCKER_TAG) . 16 $ cat Makefile
  • 17. DOCKER_TAG ?= $(USER)-dev test: @echo 'Unit testing' itest: cook-image paasta local-run --healthcheck --service devops cook-image: docker build -t $(DOCKER_TAG) . 17 $ cat Makefile
  • 18. • Containers: like lightweight VMs • Provides a language (Dockerfile) for describing container image • Reproducible builds (mostly) • Provides software flexibility 18 Docker docker.com
  • 19. FROM ubuntu:xenial MAINTAINER Nathan Handler <[email protected]> RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install apache2 libapache2-mod-php ENV APACHE_RUN_USER www-data ENV APACHE_RUN_GROUP www-data ENV APACHE_LOG_DIR /var/log/apache2 ENV APACHE_LOCK_DIR /var/lock/apache2 ENV APACHE_PID_FILE /var/run/apache2.pid RUN rm -f /var/www/html/index.html COPY htdocs /var/www/html/ CMD ["/usr/sbin/apache2", "-D", "FOREGROUND", "-C", "listen 8888"] EXPOSE 8888 19 $ cat Dockerfile
  • 20. ✓ yelpsoa-config directory for devops found in /nail/etc/serv ✓ deploy.yaml exists for a Jenkins pipeline ✗ No 'security-check' entry was found in your deploy.yaml. Please add a security-check entry *AFTER* the itest entry in d so your docker image can be checked against known security vul More info: http://servicedocs.yelpcorp.com/docs/paasta_tools/c ✗ No 'performance-check' entry was found in your deploy.yaml. Please add a performance-check entry *AFTER* the security-chec so your docker image can be checked for performance regression More info: http://servicedocs.yelpcorp.com/docs/paasta_tools/c ✓ Jenkins build pipeline found ✓ Git repo found in the expected location. ✓ Found Dockerfile ✓ A Makefile is present ✓ The Makefile contains a tab character ✓ The Makefile contains a docker tag ✓ The Makefile responds to `make cook-image` ✓ The Makefile responds to `make itest` ✓ The Makefile responds to `make test` ✓ Found marathon.yaml file. ✓ All entries in deploy.yaml correspond to a marathon or chro ✓ All marathon instances have a corresponding deploy.yaml ent ✓ monitoring.yaml found for Sensu monitoring ✓ Your service uses Sensu and team 'nhandler' will get alerts ✓ Found smartstack.yaml file ✓ Instance 'demo' of your service is using smartstack port 20 balanced ✓ Successfully validated schema: marathon-nova-devc.yaml 20 $ paasta check
  • 23. --- pipeline: - instancename: itest - instancename: push-to-registry - instancename: dev.everything 23 $ cat deploy.yaml
  • 26. • Describe end goal, not path • Helps us achieve fault tolerance. "Deploy 6de16ff2 to prod" vs. "Commit 6de16ff2 should be running in prod" Gas pedal vs. Cruise Control 26 Declarative control
  • 27. Description: A demo PaaSTA service for OSCON 2016 External Link: http://conferences.oreilly.com/oscon/open-source- us/public/schedule/detail/49358 Monitored By: team nhandler Runbook: Please set a `runbook` field in your monitoring.yaml. Like "y/rb-m Docs: https://trac.yelpcorp.com/wiki/HowToService/Monitoring/monitoring.yam Git Repo: [email protected]:services/devops Jenkins Pipeline: https://jenkins.yelpcorp.com/view/services-devops Deployed to the following clusters: - nova-devc (N/A) Smartstack endpoint(s): - http://169.254.255.254:20973 (demo) Dashboard(s): - https://uchiwa.yelpcorp.com/#/events?q=devops (Sensu Alerts) 27 $ paasta info
  • 28. PaaSTA Components 28 Docker Registry Developer git push git pull git push docker push 28 Marathon
  • 29. • Mesos is an "SDK for distributed systems", not batteries-included. • Requires a framework • Marathon • Chronos for scheduled batches • Can run many frameworks on the same cluster • Supports Docker as task executor 29 mesosphere.io mesos.apache.org Scheduling: Mesos + Marathon
  • 30. --- demo: cpus: 0.1 instances: 3 mem: 500 monitoring: alert_after: 0m bounce_method: brutal deploy_group: dev.everything 30 $ cat marathon-nova-devc.yaml
  • 31. PaaSTA Components 31 Docker Registry Developer git push git pull git push docker push 31 Marathon
  • 32. ● Brutal: Stops old versions and starts the new version, without regard to safety. ● Upthendown: Brings up the new version of the service and waits until all instances are healthy before stopping the old versions. ● Downthenup: Stops any old versions and waits for them to die before starting the new version. ● Crossover: Starts the new version, and gradually kills instances of the old versions as new instances become healthy. Bounce Strategies 32
  • 33. 33
  • 34. 34
  • 35. 35
  • 36. 36 Discovery in PaaSTA: Smartstack mesos slave box2 client nerve HAProxy synapse box1 service nerve mesos slave synapse HAProxy ZooKeeperMetadata HTTP request healthcheck
  • 39. Pipeline: https://jenkins.yelpcorp.com/view/services-devops cluster: nova-devc instance: demo Git sha: 6de16ff2 State: Running - Desired state: Started Marathon: Healthy - up with (3/3) instances. Status: Running. Mesos: Healthy - (3/3) tasks in the TASK_RUNNING state. Smartstack: Name LastCheck LastChange Status useast1-devc - Healthy - in haproxy with (3/3) total backends UP in this namespace. 39 $ paasta status
  • 40. Cluster: mesosstage Dashboards: Marathon RO: http://marathon.paasta-mesosstage.yelp/ Smartstack: http://paasta-mesosstage.yelp:3212 Chronos RO: http://chronos.paasta-mesosstage.yelp/ Mesos: http://mesos.paasta-mesosstage.yelp Mesos Status: OK quorum: masters: 3 configured quorum: 2 frameworks: framework: chronos-2.4.0 count: 1 framework: marathon count: 1 CPUs: 1.00 / 7 in use (14.29%) Memory: 3.03 / 42.85GB in use (7.07%) Disk: 10.00 / 153.81GB in use (6.50%) tasks: running: 9 staging: 1 starting: 0 slaves: active: 7 inactive: 0 Marathon Status: OK marathon apps: 5 marathon tasks: 9 marathon deployments: 0 Chronos Status: OK Enabled chronos jobs: 1 40 $ paasta metastatus
  • 41. PaaSTA Components 41 Docker Registry Developer git push git pull git push docker push 41 Marathon Sensu
  • 43. 43
  • 44. PaaSTA Components 44 Docker Registry Developer git push git pull git push docker push 44 Marathon Sensu