SlideShare une entreprise Scribd logo
1  sur  57
Télécharger pour lire hors ligne
Tweet @garethbowles with feedback!
Self-Service Build & Deployment @Netflix
Monday, August 5, 13
Tweet @garethbowles with feedback!
• How would your organization be different if all
of your engineers could build, test and deploy
their own code ...
• ... and were responsible for fixing what they
broke at 3am ?
Monday, August 5, 13
Tweet @garethbowles with feedback!
Gareth Bowles
Monday, August 5, 13
Tweet @garethbowles with feedback!
Monday, August 5, 13
Tweet @garethbowles with feedback!
Netflix is the world’s leading Internet television
network with more than 36 million members in 40
countries enjoying more than one billion hours ofTV
shows and movies per month, including original
series.
Source: http://ir.netflix.com
Monday, August 5, 13
Tweet @garethbowles with feedback!
The Challenge
• We need to innovate rapidly, driven by:
• Global competition
• New connected devices
• Continuous customer feedback
• And we need fast rollback
Monday, August 5, 13
Tweet @garethbowles with feedback!
The Challenge
• We need to scale to cope with:
• Growing customer base
• Peaks in demand:
• Special events: holidays, Oscars
• Daily fluctuations (weekdays vs.
weekends, daytime vs. evening)
Monday, August 5, 13
Tweet @garethbowles with feedback!
Things That Help
• We can push out updates whenever we like
• Company culture
Monday, August 5, 13
Tweet @garethbowles with feedback!
Things That Got in Our Way
Monday, August 5, 13
Tweet @garethbowles with feedback!
A Few ShortYears Ago ...
• Monolithic web app
• Single points of failure
• Releases were done by following runbooks
• DC-based infrastructure
• Different teams used different tools
Monday, August 5, 13
Tweet @garethbowles with feedback!
Meeting the Challenge
Monday, August 5, 13
Tweet @garethbowles with feedback!
http://www.slideshare.net/reed2001/culture-1798664
Monday, August 5, 13
Tweet @garethbowles with feedback!
Freedom and Responsibility
• Hire mature people who work well with
others
• Give them the context for company success
• Then get out of their way
• But hold them responsible for results
Monday, August 5, 13
Tweet @garethbowles with feedback!
Context, not Control
• Be transparent about what the company needs
to succeed
• Minimize the processes people need to go
through to achieve success
• Value results, not planning and process
Monday, August 5, 13
Tweet @garethbowles with feedback!
Highly Aligned, Loosely Coupled
• Clear strategy and goals
• Team interactions focus on strategy, not tactics
• Minimal cross-functional meetings
• Occasional post-mortems to increase
alignment
Monday, August 5, 13
Tweet @garethbowles with feedback!
What This Helped Us Achieve
• DVD to Streaming
• DC to cloud
• US-only to 40-plus countries
Monday, August 5, 13
Tweet @garethbowles with feedback!
Architecture
Credit: Steve Somers
Monday, August 5, 13
Tweet @garethbowles with feedback!
Key Changes
• Service oriented architecture
• Many small teams, each providing their own
interconnected service
• Deploy on Amazon Web Services
• Increased reliance on open source
Monday, August 5, 13
Tweet @garethbowles with feedback!
Highly aligned, loosely coupled
• Services are built by different
teams who work together to
figure out what each service
will provide.
• The service owner publishes
an API that anyone can use.
Monday, August 5, 13
Tweet @garethbowles with feedback!
What AWS Provides
• Machine Images (AMI)
• Instances (EC2)
• Elastic IPs
• Load Balancers
• Security groups / Autoscaling groups
Monday, August 5, 13
Tweet @garethbowles with feedback!
Freedom and Responsibility
• Developers deploy when
they want
• They also manage their own
capacity and autoscaling
• And fix anything that breaks
at 3am!
Monday, August 5, 13
Tweet @garethbowles with feedback!
Personaliza-­‐
Eon	
  Engine
User	
  Info
Movie	
  
Metadata
Movie	
  
RaEngs
Similar	
  
Movies
API
Reviews
A/B	
  Test	
  
Engine
2B	
  requests	
  
per	
  day	
  
into	
  the	
  Ne3lix	
  
API
12B	
  outbound	
  
requests	
  per	
  
day	
  to	
  API	
  
dependencies
Monday, August 5, 13
Tweet @garethbowles with feedback!
Personaliza-­‐
Eon	
  Engine
User	
  Info
Movie	
  
Metadata
Movie	
  
RaEngs
Similar	
  
Movies
API
Reviews
A/B	
  Test	
  
Engine
2B	
  requests	
  
per	
  day	
  
into	
  the	
  Ne3lix	
  
API
12B	
  outbound	
  
requests	
  per	
  
day	
  to	
  API	
  
dependencies
Monday, August 5, 13
Tweet @garethbowles with feedback!
Build and Deployment
Monday, August 5, 13
Tweet @garethbowles with feedback!
The Audience
• ~700 engineers
• Large majority are developers
• Test engineers
• Delivery teams
• Operations & reliability engineering
Monday, August 5, 13
Tweet @garethbowles with feedback!
Our Goal
• Lower the barriers to build, test and
deployment until the entire process is
accessible to every developer.
Monday, August 5, 13
Tweet @garethbowles with feedback!
The Team
• 11 engineers and 1 director (but we’re hiring !)
• Developers, build / release engineers, DevOps
• Specialize, but understand the full stack
• Service oriented
Monday, August 5, 13
Tweet @garethbowles with feedback!
Self-Service Build & Deployment
• Channel best practices
Monday, August 5, 13
Tweet @garethbowles with feedback!
Self-Service Build & Deployment
• Channel best practices
• Promote, don’t dictate
Monday, August 5, 13
Tweet @garethbowles with feedback!
Self-Service Build & Deployment
• Channel best practices
• Promote, don’t dictate
• Make adoption easy
Monday, August 5, 13
Tweet @garethbowles with feedback!
Self-Service Build & Deployment
• Channel best practices
• Promote, don’t dictate
• Make adoption easy
• Make tools flexible
Monday, August 5, 13
Tweet @garethbowles with feedback!
Building and Deploying
Perforce / Git
libraries
source
Ant targets
Ivy
Groovy all over
snapshot / release
libraries / apps
Jenkins
sync
resolve
buildcompile report
publishtest
Artifactory yum
Aminator
Asgard
rpms
Monday, August 5, 13
Tweet @garethbowles with feedback!
Building and Deploying
Perforce / Git
libraries
source
Ant targets
Ivy
Groovy all over
snapshot / release
libraries / apps
Jenkins
sync
resolve
buildcompile report
publishtest
Artifactory yum
Aminator
Asgard
rpms
Monday, August 5, 13
Tweet @garethbowles with feedback!
Is That Really Self-Service ?
Monday, August 5, 13
Tweet @garethbowles with feedback!
Common Build Framework
• Define a build with just a few lines of Ant code
• Templates for libraries and webapps
• Override standard targets if you need to
Monday, August 5, 13
Tweet @garethbowles with feedback!
Jenkins Job DSL
• Define Jenkins build jobs using a domain
specific language (based on Groovy)
• Loop to create multiple jobs (e.g. for building
different branches)
• Make one change and rerun to update all jobs
• The code is the configuration
• https://wiki.jenkins-ci.org/display/JENKINS/Job
Monday, August 5, 13
Tweet @garethbowles with feedback!
Jenkins Dynaslaves
• Create build slaves in AWS
• Dedicated slave pools for teams
• Scale slave pools up and down on demand
• https://github.com/Netflix-Skunkworks/
dynaslave-plugin
Monday, August 5, 13
Tweet @garethbowles with feedback!
From Build to Deployment
Monday, August 5, 13
Tweet @garethbowles with feedback!
Aminator
• Create (“bake”) AMIs
• Image contains a service and everything needed
to run it
• Can be automatically triggered as a build step
• https://github.com/Netflix/aminator
Monday, August 5, 13
Tweet @garethbowles with feedback!
How Baking is Different
https://github.com/Netflix/aminator
Monday, August 5, 13
Tweet @garethbowles with feedback!
How Baking is Different
Traditional:
•launch OS
•install packages
•install app
https://github.com/Netflix/aminator
Monday, August 5, 13
Tweet @garethbowles with feedback!
How Baking is Different
Generic AMI
Instance
Traditional:
•launch OS
•install packages
•install app
https://github.com/Netflix/aminator
Monday, August 5, 13
Tweet @garethbowles with feedback!
How Baking is Different
Generic AMI
Instance
Traditional:
•launch OS
•install packages
•install app
https://github.com/Netflix/aminator
Monday, August 5, 13
Tweet @garethbowles with feedback!
How Baking is Different
Generic AMI
Instance
Traditional:
•launch OS
•install packages
•install app
https://github.com/Netflix/aminator
Monday, August 5, 13
Tweet @garethbowles with feedback!
How Baking is Different
Generic AMI
Instance
Traditional:
•launch OS
•install packages
•install app
Netflix:
•launch OS+app
https://github.com/Netflix/aminator
Monday, August 5, 13
Tweet @garethbowles with feedback!
How Baking is Different
Generic AMI
Instance
Traditional:
•launch OS
•install packages
•install app
Netflix:
•launch OS+app
App AMI Instance
https://github.com/Netflix/aminator
Monday, August 5, 13
Tweet @garethbowles with feedback!
Linux Base AMI (CentOS or Ubuntu)
Java (JDK 6 or 7)
Tomcat
Optional
Apache
Monitoring
Log Rotation
to S3
Appdynamics
Machine
Agent
Appdynamics
App Agent
monitoring
Application war file, base
servlet, platform, interface
jars for dependent
services
GC and
thread
dump
logging
Healthcheck, status
servlets, JMX interface,
Servo autoscale
Monday, August 5, 13
Tweet @garethbowles with feedback!
At Netflix, the AMI is the unit of
deployment.
Monday, August 5, 13
Tweet @garethbowles with feedback!
Asgard
• Web UI and REST API for service deployment
and management
• Manage ASGs, ELBs, security groups, ...
• Application -> cluster -> ASG
• Rapid deployment and rollback
• Available to all engineers
• https://github.com/Netflix/asgard
Monday, August 5, 13
Tweet @garethbowles with feedback!
Red / Black Deployment
Monday, August 5, 13
Tweet @garethbowles with feedback!
Netflix has moved the
granularity from the
instance to the cluster.
Monday, August 5, 13
Tweet @garethbowles with feedback!
Simple Service Setup Effort
• Write the code (variable :-))
• 15 minutes to write a build file and define
dependencies
• 15 mins to create a Jenkins build, 2 to 10 mins
to run it
• 5 mins to bake an AMI
• 10 mins to deploy in test, another 10 for prod
Monday, August 5, 13
Tweet @garethbowles with feedback!
Just a quick reminder...
(Some of) Netflix is open source:
https://github.com/netflix
Monday, August 5, 13
Tweet @garethbowles with feedback!
Why We Open Source
• Give back to Apache license OSS community
• Motivate, retain, hire top engineers
• Benefit from a shared ecosystem
• Make Netflix solutions into common standards
Monday, August 5, 13
Tweet @garethbowles with feedback!
The Netflix Platform
Discovery (Eureka)
Entrypoints (Edda)
Configuration (Archaius)
Zookeeper (Exhibitor)
logging (Blitz4j & Honu)
NIWS (Ribbon)
Geo
Base
Hystrix
Circuit Breakers (Hystrix)
Cassandra (Priam &
Astyanax & CassJMeter)
Cryptex
AKMS
EvCache
Zuul
i18n
L10n
Open Source
Monday, August 5, 13
Tweet @garethbowles with feedback!
https://github.com/Netflix/Cloud-Prize/wiki
Monday, August 5, 13
Tweet @garethbowles with feedback!
ThankYou !
Email: gbowles@{gmail,netflix}.com
Twitter: @garethbowles
Linkedin: www.linkedin.com/in/garethbowles
Monday, August 5, 13

Contenu connexe

Dernier

Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 

Dernier (20)

Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 

En vedette

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

En vedette (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Self service build and deployment at Netflix (Agile 2013)

  • 1. Tweet @garethbowles with feedback! Self-Service Build & Deployment @Netflix Monday, August 5, 13
  • 2. Tweet @garethbowles with feedback! • How would your organization be different if all of your engineers could build, test and deploy their own code ... • ... and were responsible for fixing what they broke at 3am ? Monday, August 5, 13
  • 3. Tweet @garethbowles with feedback! Gareth Bowles Monday, August 5, 13
  • 4. Tweet @garethbowles with feedback! Monday, August 5, 13
  • 5. Tweet @garethbowles with feedback! Netflix is the world’s leading Internet television network with more than 36 million members in 40 countries enjoying more than one billion hours ofTV shows and movies per month, including original series. Source: http://ir.netflix.com Monday, August 5, 13
  • 6. Tweet @garethbowles with feedback! The Challenge • We need to innovate rapidly, driven by: • Global competition • New connected devices • Continuous customer feedback • And we need fast rollback Monday, August 5, 13
  • 7. Tweet @garethbowles with feedback! The Challenge • We need to scale to cope with: • Growing customer base • Peaks in demand: • Special events: holidays, Oscars • Daily fluctuations (weekdays vs. weekends, daytime vs. evening) Monday, August 5, 13
  • 8. Tweet @garethbowles with feedback! Things That Help • We can push out updates whenever we like • Company culture Monday, August 5, 13
  • 9. Tweet @garethbowles with feedback! Things That Got in Our Way Monday, August 5, 13
  • 10. Tweet @garethbowles with feedback! A Few ShortYears Ago ... • Monolithic web app • Single points of failure • Releases were done by following runbooks • DC-based infrastructure • Different teams used different tools Monday, August 5, 13
  • 11. Tweet @garethbowles with feedback! Meeting the Challenge Monday, August 5, 13
  • 12. Tweet @garethbowles with feedback! http://www.slideshare.net/reed2001/culture-1798664 Monday, August 5, 13
  • 13. Tweet @garethbowles with feedback! Freedom and Responsibility • Hire mature people who work well with others • Give them the context for company success • Then get out of their way • But hold them responsible for results Monday, August 5, 13
  • 14. Tweet @garethbowles with feedback! Context, not Control • Be transparent about what the company needs to succeed • Minimize the processes people need to go through to achieve success • Value results, not planning and process Monday, August 5, 13
  • 15. Tweet @garethbowles with feedback! Highly Aligned, Loosely Coupled • Clear strategy and goals • Team interactions focus on strategy, not tactics • Minimal cross-functional meetings • Occasional post-mortems to increase alignment Monday, August 5, 13
  • 16. Tweet @garethbowles with feedback! What This Helped Us Achieve • DVD to Streaming • DC to cloud • US-only to 40-plus countries Monday, August 5, 13
  • 17. Tweet @garethbowles with feedback! Architecture Credit: Steve Somers Monday, August 5, 13
  • 18. Tweet @garethbowles with feedback! Key Changes • Service oriented architecture • Many small teams, each providing their own interconnected service • Deploy on Amazon Web Services • Increased reliance on open source Monday, August 5, 13
  • 19. Tweet @garethbowles with feedback! Highly aligned, loosely coupled • Services are built by different teams who work together to figure out what each service will provide. • The service owner publishes an API that anyone can use. Monday, August 5, 13
  • 20. Tweet @garethbowles with feedback! What AWS Provides • Machine Images (AMI) • Instances (EC2) • Elastic IPs • Load Balancers • Security groups / Autoscaling groups Monday, August 5, 13
  • 21. Tweet @garethbowles with feedback! Freedom and Responsibility • Developers deploy when they want • They also manage their own capacity and autoscaling • And fix anything that breaks at 3am! Monday, August 5, 13
  • 22. Tweet @garethbowles with feedback! Personaliza-­‐ Eon  Engine User  Info Movie   Metadata Movie   RaEngs Similar   Movies API Reviews A/B  Test   Engine 2B  requests   per  day   into  the  Ne3lix   API 12B  outbound   requests  per   day  to  API   dependencies Monday, August 5, 13
  • 23. Tweet @garethbowles with feedback! Personaliza-­‐ Eon  Engine User  Info Movie   Metadata Movie   RaEngs Similar   Movies API Reviews A/B  Test   Engine 2B  requests   per  day   into  the  Ne3lix   API 12B  outbound   requests  per   day  to  API   dependencies Monday, August 5, 13
  • 24. Tweet @garethbowles with feedback! Build and Deployment Monday, August 5, 13
  • 25. Tweet @garethbowles with feedback! The Audience • ~700 engineers • Large majority are developers • Test engineers • Delivery teams • Operations & reliability engineering Monday, August 5, 13
  • 26. Tweet @garethbowles with feedback! Our Goal • Lower the barriers to build, test and deployment until the entire process is accessible to every developer. Monday, August 5, 13
  • 27. Tweet @garethbowles with feedback! The Team • 11 engineers and 1 director (but we’re hiring !) • Developers, build / release engineers, DevOps • Specialize, but understand the full stack • Service oriented Monday, August 5, 13
  • 28. Tweet @garethbowles with feedback! Self-Service Build & Deployment • Channel best practices Monday, August 5, 13
  • 29. Tweet @garethbowles with feedback! Self-Service Build & Deployment • Channel best practices • Promote, don’t dictate Monday, August 5, 13
  • 30. Tweet @garethbowles with feedback! Self-Service Build & Deployment • Channel best practices • Promote, don’t dictate • Make adoption easy Monday, August 5, 13
  • 31. Tweet @garethbowles with feedback! Self-Service Build & Deployment • Channel best practices • Promote, don’t dictate • Make adoption easy • Make tools flexible Monday, August 5, 13
  • 32. Tweet @garethbowles with feedback! Building and Deploying Perforce / Git libraries source Ant targets Ivy Groovy all over snapshot / release libraries / apps Jenkins sync resolve buildcompile report publishtest Artifactory yum Aminator Asgard rpms Monday, August 5, 13
  • 33. Tweet @garethbowles with feedback! Building and Deploying Perforce / Git libraries source Ant targets Ivy Groovy all over snapshot / release libraries / apps Jenkins sync resolve buildcompile report publishtest Artifactory yum Aminator Asgard rpms Monday, August 5, 13
  • 34. Tweet @garethbowles with feedback! Is That Really Self-Service ? Monday, August 5, 13
  • 35. Tweet @garethbowles with feedback! Common Build Framework • Define a build with just a few lines of Ant code • Templates for libraries and webapps • Override standard targets if you need to Monday, August 5, 13
  • 36. Tweet @garethbowles with feedback! Jenkins Job DSL • Define Jenkins build jobs using a domain specific language (based on Groovy) • Loop to create multiple jobs (e.g. for building different branches) • Make one change and rerun to update all jobs • The code is the configuration • https://wiki.jenkins-ci.org/display/JENKINS/Job Monday, August 5, 13
  • 37. Tweet @garethbowles with feedback! Jenkins Dynaslaves • Create build slaves in AWS • Dedicated slave pools for teams • Scale slave pools up and down on demand • https://github.com/Netflix-Skunkworks/ dynaslave-plugin Monday, August 5, 13
  • 38. Tweet @garethbowles with feedback! From Build to Deployment Monday, August 5, 13
  • 39. Tweet @garethbowles with feedback! Aminator • Create (“bake”) AMIs • Image contains a service and everything needed to run it • Can be automatically triggered as a build step • https://github.com/Netflix/aminator Monday, August 5, 13
  • 40. Tweet @garethbowles with feedback! How Baking is Different https://github.com/Netflix/aminator Monday, August 5, 13
  • 41. Tweet @garethbowles with feedback! How Baking is Different Traditional: •launch OS •install packages •install app https://github.com/Netflix/aminator Monday, August 5, 13
  • 42. Tweet @garethbowles with feedback! How Baking is Different Generic AMI Instance Traditional: •launch OS •install packages •install app https://github.com/Netflix/aminator Monday, August 5, 13
  • 43. Tweet @garethbowles with feedback! How Baking is Different Generic AMI Instance Traditional: •launch OS •install packages •install app https://github.com/Netflix/aminator Monday, August 5, 13
  • 44. Tweet @garethbowles with feedback! How Baking is Different Generic AMI Instance Traditional: •launch OS •install packages •install app https://github.com/Netflix/aminator Monday, August 5, 13
  • 45. Tweet @garethbowles with feedback! How Baking is Different Generic AMI Instance Traditional: •launch OS •install packages •install app Netflix: •launch OS+app https://github.com/Netflix/aminator Monday, August 5, 13
  • 46. Tweet @garethbowles with feedback! How Baking is Different Generic AMI Instance Traditional: •launch OS •install packages •install app Netflix: •launch OS+app App AMI Instance https://github.com/Netflix/aminator Monday, August 5, 13
  • 47. Tweet @garethbowles with feedback! Linux Base AMI (CentOS or Ubuntu) Java (JDK 6 or 7) Tomcat Optional Apache Monitoring Log Rotation to S3 Appdynamics Machine Agent Appdynamics App Agent monitoring Application war file, base servlet, platform, interface jars for dependent services GC and thread dump logging Healthcheck, status servlets, JMX interface, Servo autoscale Monday, August 5, 13
  • 48. Tweet @garethbowles with feedback! At Netflix, the AMI is the unit of deployment. Monday, August 5, 13
  • 49. Tweet @garethbowles with feedback! Asgard • Web UI and REST API for service deployment and management • Manage ASGs, ELBs, security groups, ... • Application -> cluster -> ASG • Rapid deployment and rollback • Available to all engineers • https://github.com/Netflix/asgard Monday, August 5, 13
  • 50. Tweet @garethbowles with feedback! Red / Black Deployment Monday, August 5, 13
  • 51. Tweet @garethbowles with feedback! Netflix has moved the granularity from the instance to the cluster. Monday, August 5, 13
  • 52. Tweet @garethbowles with feedback! Simple Service Setup Effort • Write the code (variable :-)) • 15 minutes to write a build file and define dependencies • 15 mins to create a Jenkins build, 2 to 10 mins to run it • 5 mins to bake an AMI • 10 mins to deploy in test, another 10 for prod Monday, August 5, 13
  • 53. Tweet @garethbowles with feedback! Just a quick reminder... (Some of) Netflix is open source: https://github.com/netflix Monday, August 5, 13
  • 54. Tweet @garethbowles with feedback! Why We Open Source • Give back to Apache license OSS community • Motivate, retain, hire top engineers • Benefit from a shared ecosystem • Make Netflix solutions into common standards Monday, August 5, 13
  • 55. Tweet @garethbowles with feedback! The Netflix Platform Discovery (Eureka) Entrypoints (Edda) Configuration (Archaius) Zookeeper (Exhibitor) logging (Blitz4j & Honu) NIWS (Ribbon) Geo Base Hystrix Circuit Breakers (Hystrix) Cassandra (Priam & Astyanax & CassJMeter) Cryptex AKMS EvCache Zuul i18n L10n Open Source Monday, August 5, 13
  • 56. Tweet @garethbowles with feedback! https://github.com/Netflix/Cloud-Prize/wiki Monday, August 5, 13
  • 57. Tweet @garethbowles with feedback! ThankYou ! Email: gbowles@{gmail,netflix}.com Twitter: @garethbowles Linkedin: www.linkedin.com/in/garethbowles Monday, August 5, 13