SlideShare uma empresa Scribd logo
1 de 53
Architectural Patterns for High
         Anxiety Availability
                     November 2012
                     Adrian Cockcroft
                  @adrianco #netflixcloud #qconsf
            http://www.linkedin.com/in/adriancockcroft



@adrianco
The Netflix Streaming Service

            Now in USA, Canada, Latin
        America, UK, Ireland, Sweden, Denm
             ark, Norway and Finland


@adrianco
US Non-Member Web Site
              Advertising and Marketing Driven




@adrianco
Member Web Site
             Personalization Driven




@adrianco
Streaming Device API




@adrianco
Content Delivery Service
    Distributed storage nodes controlled by Netflix cloud services




@adrianco
November 2012 Traffic




@adrianco
Abstract
• Netflix on Cloud – What, Why and When

• Globally Distributed Architecture

• Benchmarks and Scalability

• Open Source Components

• High Anxiety

@adrianco
Blah Blah                            Blah

             (I’m skipping all the cloud intro etc. did that
               last year… Netflix runs in the cloud, if you
              hadn’t figured that out already you aren’t
              paying attention and should go read Infoq
                       and slideshare.net/netflix)



@adrianco
Things we don’t do




@adrianco
Things We Do Do…
                                             In production
                                             at Netflix
•   Big Data/Hadoop                          2009
•   AWS Cloud                                2009
•   Application Performance Management       2010
•   Integrated DevOps Practices              2010
•   Continuous Integration/Delivery          2010
•   NoSQL, Globally Distributed              2010
•   Platform as a Service; Micro-Services    2010
•   Social coding, open development/github   2011

@adrianco
How Netflix Works
Consumer
Electronics                                        User Data
                                 Web Site or
AWS Cloud
                                Discovery API
 Services
                                                 Personalization
CDN Edge
Locations
                                                      DRM
              Customer Device
                                Streaming API
               (PC, PS3, TV…)
                                                  QoS Logging


                                                     CDN
                                                Management and
                                                   Steering
                                OpenConnect
                                 CDN Boxes
                                                Content Encoding



 @adrianco
Web Server Dependencies Flow
        (Home page business transaction as seen by AppDynamics)

 Each icon is three
 to a few hundred
 instances across
 three AWS zones                              Cassandra

                                                          memcached
                                                     Web service
       Start Here
                                                          S3 bucket




Personalization movie
group chooser
 @adrianco
Component Micro-Services
            Test With Chaos Monkey, Latency Monkey




@adrianco
Three Balanced Availability Zones
                           Test with Chaos Gorilla

                                Load Balancers




          Zone A                      Zone B                  Zone C
   Cassandra and Evcache       Cassandra and Evcache   Cassandra and Evcache
         Replicas                    Replicas                Replicas




@adrianco
Triple Replicated Persistence
           Cassandra maintenance affects individual replicas
                              Load Balancers




          Zone A                    Zone B                  Zone C
   Cassandra and Evcache     Cassandra and Evcache   Cassandra and Evcache
         Replicas                  Replicas                Replicas




@adrianco
Isolated Regions

                      US-East Load Balancers                                              EU-West Load Balancers




      Zone A                      Zone B                  Zone C               Zone A                 Zone B               Zone C

 Cassandra Replicas          Cassandra Replicas      Cassandra Replicas   Cassandra Replicas     Cassandra Replicas   Cassandra Replicas




@adrianco
Failure Modes and Effects
Failure Mode          Probability   Mitigation Plan
Application Failure   High          Automatic degraded response
AWS Region Failure    Low           Wait for region to recover
AWS Zone Failure      Medium        Continue to run on 2 out of 3 zones
Datacenter Failure    Medium        Migrate more functions to cloud
Data store failure    Low           Restore from S3 backups
S3 failure            Low           Restore from remote archive




@adrianco
Zone Failure Modes
• Power Outage
    – Instances lost, ephemeral state lost
    – Clean break and recovery, fail fast, “no route to host”

• Network Outage
    – Instances isolated, state inconsistent
    – More complex symptoms, recovery issues, transients

• Dependent Service Outage
    – Cascading failures, misbehaving instances, human errors
    – Confusing symptoms, recovery issues, byzantine effects

        More detail on this topic at AWS Re:Invent later this month…
@adrianco
Cassandra backed Micro-Services

            A highly scalable, available and
             durable deployment pattern



@adrianco
Micro-Service Pattern
     One keyspace, replaces a single table or materialized view
                                                                       Single function Cassandra
  Many Different Single-Function REST Clients                          Cluster Managed by Priam
                                                                       Between 6 and 72 nodes

                                     Stateless Data Access REST Service
                                     Astyanax Cassandra Client




                                                                                Optional
Each icon represents a horizontally scaled service of three to                  Datacenter
hundreds of instances deployed over three availability zones                    Update Flow
                              Appdynamics Service Flow Visualization
@adrianco
Stateless Micro-Service Architecture

 Linux Base AMI (CentOS or Ubuntu)

   Optional Apache
 frontend, memcache
                       Java (JDK 6 or 7)
   d, non-java apps


                          AppDynamics
                            appagent
                           monitoring       Tomcat
     Monitoring
                                            Application war file, base servlet,
  Log rotation to S3                                                              Healthcheck, status servlets, JMX
                                             platform, client interface jars,
    AppDynamics        GC and thread dump                                            interface, Servo autoscale
                                                        Astyanax
    machineagent             logging
      Epic/Atlas




@adrianco
Astyanax
                 Available at http://github.com/netflix

• Features
    –   Complete abstraction of connection pool from RPC protocol
    –   Fluent Style API
    –   Operation retry with backoff
    –   Token aware
• Recipes
    –   Distributed row lock (without zookeeper)
    –   Multi-DC row lock
    –   Uniqueness constraint
    –   Multi-row uniqueness constraint
    –   Chunked and multi-threaded large file storage


@adrianco
Astyanax Query Example
Paginate through all columns in a row
ColumnList<String> columns;
int pageize = 10;
try {
  RowQuery<String, String> query = keyspace
      .prepareQuery(CF_STANDARD1)
      .getKey("A")
      .setIsPaginating()
      .withColumnRange(new RangeBuilder().setMaxSize(pageize).build());

   while (!(columns = query.execute().getResult()).isEmpty()) {
     for (Column<String> c : columns) {
     }
   }
} catch (ConnectionException e) {
}


@adrianco
Astyanax - Cassandra Write Data Flows
           Single Region, Multiple Availability Zone, Token Aware

                                          Cassandra
                                          •Disks
                                          •Zone A

1. Client Writes to local   Cassandra 3                 2Cassandra   If a node goes
   coordinator              •Disks4                     3•Disks 4    offline, hinted handoff
2. Coodinator writes to     •Zone C           1          •Zone B     completes the write
                                                         2
   other zones                            Token                      when the node comes
3. Nodes return ack                                                  back up.
4. Data written to                        Aware
   internal commit log                    Clients                    Requests can choose to
   disks (no more than      Cassandra                    Cassandra   wait for one node, a
   10 seconds later)        •Disks                       •Disks      quorum, or all nodes to
                            •Zone B                      •Zone C     ack the write

                                          Cassandra
                                                    3
                                                                     SSTable disk writes and
                                          •Disks    4                compactions occur
                                          •Zone A
                                                                     asynchronously


   @adrianco
Data Flows for Multi-Region Writes
          Token Aware, Consistency Level = Local Quorum

1. Client writes to local replicas                   If a node or region goes offline, hinted handoff
2. Local write acks returned to                      completes the write when the node comes back up.
   Client which continues when                       Nightly global compare and repair jobs ensure
   2 of 3 local nodes are                            everything stays consistent.
   committed
3. Local coordinator writes to
   remote coordinator.                                                       100+ms latency
                                                      Cassandra                                       Cassandra
4. When data arrives, remote                          • Disks
                                                      • Zone A
                                                                                                      • Disks
                                                                                                      • Zone A

   coordinator node acks and         Cassandra   2                2
                                                                  Cassandra              Cassandra                4Cassandra
                                          6
                                     • Disks                      • Disks 6 3           5• Disks6                 4 Disks6
   copies to other remote zones      • Zone C
                                                           1
                                                                  • Zone B               • Zone C
                                                                                                                   •
                                                                                                                   • Zone B

                                                                                                                        4
5. Remote nodes ack to local                           US                                              EU
   coordinator                                       Clients                                         Clients
                                     Cassandra                        2
                                                                  Cassandra              Cassandra                 Cassandra
6. Data flushed to internal          • Disks
                                     • Zone B
                                                                  • Disks
                                                                  • Zone C
                                                                          6              • Disks
                                                                                         • Zone B
                                                                                                                   • Disks
                                                                                                                   • Zone C

   commit log disks (no more                          Cassandra                                              5
                                                                                                     6Cassandra
                                                      • Disks
   than 10 seconds later)                             • Zone A
                                                                                                      • Disks
                                                                                                      • Zone A




   @adrianco
Cassandra Instance Architecture

 Linux Base AMI (CentOS or Ubuntu)

  Tomcat and Priam
      on JDK
                       Java (JDK 7)
 Healthcheck, Status


                          AppDynamics
                            appagent
                           monitoring       Cassandra Server
     Monitoring
                                            Local Ephemeral Disk Space – 2TB of SSD or 1.6TB disk holding Commit log and
   AppDynamics
                       GC and thread dump                                     SSTables
   machineagent
                             logging
    Epic/Atlas




@adrianco
Priam – Cassandra Automation
            Available at http://github.com/netflix

•   Netflix Platform Tomcat Code
•   Zero touch auto-configuration
•   State management for Cassandra JVM
•   Token allocation and assignment
•   Broken node auto-replacement
•   Full and incremental backup to S3
•   Restore sequencing from S3
•   Grow/Shrink Cassandra “ring”

@adrianco
Cassandra Backup
• Full Backup                                                Cassandra

                                             Cassandra                       Cassandra

    – Time based snapshot
    – SSTable compress -> S3     Cassandra                                               Cassandra




• Incremental                                                  S3
                                                             Backup
                               Cassandra                                                   Cassandra

    – SSTable write triggers
      compressed copy to S3
                                      Cassandra                                    Cassandra


• Archive                                            Cassandra       Cassandra


    – Copy cross region
                                    A

@adrianco
Deployment at Netflix

            Over 50 Cassandra Clusters
            Over 500 m2.4xlg+hi1.4xlg
            Over 30TB of daily backups
            Biggest cluster 72 nodes
            1 cluster over 250Kwrites/s

@adrianco
Cassandra Explorer for Data
                 Open source on github soon




@adrianco
ETL for Cassandra
•   Data is de-normalized over many clusters!
•   Too many to restore from backups for ETL
•   Solution – read backup files using Hadoop
•   Aegisthus
    – http://techblog.netflix.com/2012/02/aegisthus-bulk-data-pipeline-out-of.html

    – High throughput raw SSTable processing
    – Re-normalizes many clusters to a consistent view
    – Extract, Transform, then Load into Teradata

@adrianco
Benchmarks and Scalability




@adrianco
Cloud Deployment Scalability
         New Autoscaled AMI – zero to 500 instances from 21:38:52 - 21:46:32, 7m40s
  Scaled up and down over a few days, total 2176 instance launches, m2.2xlarge (4 core 34GB)

                          Min. 1st Qu. Median Mean 3rd Qu. Max.
                           41.0 104.2 149.0 171.8 215.8 562.0




@adrianco
Scalability from 48 to 288 nodes on AWS
  http://techblog.netflix.com/2011/11/benchmarking-cassandra-scalability-on.html


                Client Writes/s by node count – Replication Factor = 3
1200000
                                                                      1099837
1000000

 800000
                                                           Used 288 of m1.xlarge
 600000                                                    4 CPU, 15 GB RAM, 8 ECU
                                            537172         Cassandra 0.86
 400000                                                    Benchmark config only
                                  366828                   existed for about 1hr
 200000                 174373

       0
            0         50         100       150       200   250       300        350


@adrianco
“Some people skate to the puck,
  I skate to where the puck is going to be”
               Wayne Gretzky




@adrianco
Cassandra on AWS
The Past                     The Future
• Instance: m2.4xlarge       • Instance: hi1.4xlarge
• Storage: 2 drives, 1.7TB   • Storage: 2 SSD volumes, 2TB
• CPU: 8 Cores, 26 ECU       • CPU: 8 HT cores, 35 ECU
• RAM: 68GB                  • RAM: 64GB
• Network: 1Gbit             • Network: 10Gbit
• IOPS: ~500                 • IOPS: ~100,000
• Throughput: ~100Mbyte/s    • Throughput: ~1Gbyte/s
• Cost: $1.80/hr             • Cost: $3.10/hr


@adrianco
Cassandra Disk vs. SSD Benchmark
            Same Throughput, Lower Latency, Half Cost




@adrianco
Netflix Open Source Strategy
• Release PaaS Components git-by-git
    – Source at github.com/netflix – we build from it…
    – Intros and techniques at techblog.netflix.com
    – Blog post or new code every few weeks


• Motivations
    – Give back to Apache licensed OSS community
    – Motivate, retain, hire top engineers
    – “Peer pressure” code cleanup, external contributions

@adrianco
Instance creation


        Bakery &
       Build tools                       Asgard

                     Base AMI                                       Instance
                                                  Autoscaling
       Application                Odin
         Code                                       scripts




        Image baked             ASG / Instance started          Instance Running




@adrianco
Application Launch


            Governator                            Eureka
             (Guice)
                              Async
                             logging
                                       Archaius            Edda
              Servo


                                               Service
            Application initializing   Registry, configuration
                                               history


@adrianco
Runtime


        Astyanax                     Priam

                   Curator                                     Chaos Monkey
                                                               Latency Monkey
                             NIWS
                                                Exhibitor
                              LB                               Janitor Monkey
                   REST
                                                               Cass JMeter
     Dependency    client
      Command                       Explorers



       Client Side             Server Side                  Resiliency aids
      Components              Components



@adrianco
Open Source Projects
         Legend
 Github / Techblog                Priam                          Exhibitor
                                                                                       Servo and Autoscaling Scripts
Apache Contributions
                          Cassandra as a Service           Zookeeper as a Service
                                 Astyanax                         Curator                         Honu
   Techblog Post
                         Cassandra client for Java          Zookeeper Patterns          Log4j streaming to Hadoop
   Coming Soon
                                CassJMeter                        EVCache                     Circuit Breaker
                           Cassandra test suite           Memcached as a Service          Robust service pattern

                       Cassandra Multi-region EC2            Eureka / Discovery          Asgard - AutoScaleGroup
                           datastore support                 Service Directory             based AWS console

                                Aegisthus                         Archaius                    Chaos Monkey
                        Hadoop ETL for Cassandra        Dynamics Properties Service       Robustness verification
                                                                   Edda
                                 Explorers                                                   Latency Monkey
                                                          Queryable config history

                       Governator - Library lifecycle     Server-side latency/error
                                                                                             Janitor Monkey
                        and dependency injection                  injection

                                   Odin
                                                          REST Client + mid-tier LB         Bakeries and AMI
                         Workflow orchestration

                              Async logging             Configuration REST endpoints         Build dynaslaves



@adrianco
Cassandra Next Steps
• Migrate Production Cassandra to SSD
    – Many clusters done
    – 100+ SSD nodes running

• Autoscale Cassandra using Priam
    – Cassandra 1.2 Vnodes make this easier
    – Shrink Cassandra cluster every night

• Automated Zone and Region Operations
    – Add/Remove Zone, split or merge clusters
    – Add/Remove Region, split or merge clusters


@adrianco
YOLO




@adrianco
Skynet
        A Netflix Hackday project that might just terminate the
                               world…

       (hack currently only implemented in Powerpoint – luckly)




@adrianco
The Plot (kinda)
• Skynet is a sentient computer

• Skynet defends itself if you try to turn it off

• Connor is the guy who eventually turns it off

• Terminator is the robot sent to kill Connor

@adrianco
The Hacktors
• Cass_skynet is a self-managing Cassandra cluster
• Connor_monkey kills cass_skynet nodes
• Terminator_monkey kills connor_monkey nodes




@adrianco
The Hacktion
• Cass_skynet stores a history of its world and
  action scripts that trigger from what it sees
• Action response to losing a node
    – Auto-replace node and grow cluster size
• Action response to losing more nodes
    – Replicate cluster into a new zone or region
• Action response to seeing a Connor_monkey
    – Startup a Terminator_monkey

@adrianco
Implementation
• Priam
    – Autoreplace missing nodes
    – Grow cass_skynet cluster in zone, to new zones or regions
• Cassandra Keyspaces
    – Actions – scripts to be run
    – Memory – record event log of everything seen
• Cron job once a minute
    – Extract actions from Cassandra and execute
    – Log actions and results in memory
• Chaos Monkey configuration
    – Terminator_monkey: pick a zone, kill any connor_monkey
    – Connor_monkey: kill any cass_skynet or terminator_monkey


@adrianco
“Simulation”




@adrianco
High Anxiety




@adrianco
Takeaway

  Netflix has built and deployed a scalable global platform based on
                           Cassandra and AWS.

Key components of the Netflix PaaS are being released as Open Source
          projects so you can build your own custom PaaS.

                  SSD’s in the cloud are awesome….

                         http://github.com/Netflix
                        http://techblog.netflix.com
                        http://slideshare.net/Netflix

                 http://www.linkedin.com/in/adriancockcroft
                   @adrianco http://perfcap.blogspot.com


@adrianco

Mais conteĂşdo relacionado

Mais procurados

How Kubernetes helps Devops
How Kubernetes helps DevopsHow Kubernetes helps Devops
How Kubernetes helps DevopsSreenivas Makam
 
Introduction To Containers - Builders Day Israel
Introduction To Containers - Builders Day IsraelIntroduction To Containers - Builders Day Israel
Introduction To Containers - Builders Day IsraelAmazon Web Services
 
AWS 신규 데이터 분석 서비스 - QuickSight, Kinesis Firehose 등 (양승도) :: re:Invent re:Cap ...
AWS 신규 데이터 분석 서비스 - QuickSight, Kinesis Firehose 등 (양승도) :: re:Invent re:Cap ...AWS 신규 데이터 분석 서비스 - QuickSight, Kinesis Firehose 등 (양승도) :: re:Invent re:Cap ...
AWS 신규 데이터 분석 서비스 - QuickSight, Kinesis Firehose 등 (양승도) :: re:Invent re:Cap ...Amazon Web Services Korea
 
Cloud Architecture - Multi Cloud, Edge, On-Premise
Cloud Architecture - Multi Cloud, Edge, On-PremiseCloud Architecture - Multi Cloud, Edge, On-Premise
Cloud Architecture - Multi Cloud, Edge, On-PremiseAraf Karsh Hamid
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker IntroductionPeng Xiao
 
What is AWS?
What is AWS?What is AWS?
What is AWS?Martin Yan
 
Amazon EKS - Elastic Container Service for Kubernetes
Amazon EKS - Elastic Container Service for KubernetesAmazon EKS - Elastic Container Service for Kubernetes
Amazon EKS - Elastic Container Service for KubernetesAmazon Web Services
 
AWS Webcast - Migrating your Data Center to the Cloud
AWS Webcast - Migrating your Data Center to the CloudAWS Webcast - Migrating your Data Center to the Cloud
AWS Webcast - Migrating your Data Center to the CloudAmazon Web Services
 
Autoscaling in Kubernetes
Autoscaling in KubernetesAutoscaling in Kubernetes
Autoscaling in KubernetesHrishikesh Deodhar
 
K8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSK8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSAmazon Web Services
 
Introduction to Serverless
Introduction to ServerlessIntroduction to Serverless
Introduction to ServerlessAmazon Web Services
 
The Fundamentals of Networking in AWS: VPC and Connectivity Options - Business
The Fundamentals of Networking in AWS: VPC and Connectivity Options - BusinessThe Fundamentals of Networking in AWS: VPC and Connectivity Options - Business
The Fundamentals of Networking in AWS: VPC and Connectivity Options - BusinessAmazon Web Services
 
Running Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
Running Microsoft SharePoint On AWS - Smartronix and AWS - WebinarRunning Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
Running Microsoft SharePoint On AWS - Smartronix and AWS - WebinarAmazon Web Services
 
Kubernetes Concepts And Architecture Powerpoint Presentation Slides
Kubernetes Concepts And Architecture Powerpoint Presentation SlidesKubernetes Concepts And Architecture Powerpoint Presentation Slides
Kubernetes Concepts And Architecture Powerpoint Presentation SlidesSlideTeam
 
What is Docker Architecture | Edureka
What is Docker Architecture | EdurekaWhat is Docker Architecture | Edureka
What is Docker Architecture | EdurekaEdureka!
 
Best Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes ServicesBest Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes ServicesQAware GmbH
 
Netflix Global Cloud Architecture
Netflix Global Cloud ArchitectureNetflix Global Cloud Architecture
Netflix Global Cloud ArchitectureAdrian Cockcroft
 
Best Practices for Integrating Active Directory with AWS Workloads
Best Practices for Integrating Active Directory with AWS WorkloadsBest Practices for Integrating Active Directory with AWS Workloads
Best Practices for Integrating Active Directory with AWS WorkloadsAmazon Web Services
 
First Steps with Apache Kafka on Google Cloud Platform
First Steps with Apache Kafka on Google Cloud PlatformFirst Steps with Apache Kafka on Google Cloud Platform
First Steps with Apache Kafka on Google Cloud Platformconfluent
 

Mais procurados (20)

How Kubernetes helps Devops
How Kubernetes helps DevopsHow Kubernetes helps Devops
How Kubernetes helps Devops
 
Introduction To Containers - Builders Day Israel
Introduction To Containers - Builders Day IsraelIntroduction To Containers - Builders Day Israel
Introduction To Containers - Builders Day Israel
 
AWS 신규 데이터 분석 서비스 - QuickSight, Kinesis Firehose 등 (양승도) :: re:Invent re:Cap ...
AWS 신규 데이터 분석 서비스 - QuickSight, Kinesis Firehose 등 (양승도) :: re:Invent re:Cap ...AWS 신규 데이터 분석 서비스 - QuickSight, Kinesis Firehose 등 (양승도) :: re:Invent re:Cap ...
AWS 신규 데이터 분석 서비스 - QuickSight, Kinesis Firehose 등 (양승도) :: re:Invent re:Cap ...
 
Cloud Architecture - Multi Cloud, Edge, On-Premise
Cloud Architecture - Multi Cloud, Edge, On-PremiseCloud Architecture - Multi Cloud, Edge, On-Premise
Cloud Architecture - Multi Cloud, Edge, On-Premise
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker Introduction
 
What is AWS?
What is AWS?What is AWS?
What is AWS?
 
Amazon EKS - Elastic Container Service for Kubernetes
Amazon EKS - Elastic Container Service for KubernetesAmazon EKS - Elastic Container Service for Kubernetes
Amazon EKS - Elastic Container Service for Kubernetes
 
AWS Webcast - Migrating your Data Center to the Cloud
AWS Webcast - Migrating your Data Center to the CloudAWS Webcast - Migrating your Data Center to the Cloud
AWS Webcast - Migrating your Data Center to the Cloud
 
Autoscaling in Kubernetes
Autoscaling in KubernetesAutoscaling in Kubernetes
Autoscaling in Kubernetes
 
K8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSK8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKS
 
Amazon EC2 Masterclass
Amazon EC2 MasterclassAmazon EC2 Masterclass
Amazon EC2 Masterclass
 
Introduction to Serverless
Introduction to ServerlessIntroduction to Serverless
Introduction to Serverless
 
The Fundamentals of Networking in AWS: VPC and Connectivity Options - Business
The Fundamentals of Networking in AWS: VPC and Connectivity Options - BusinessThe Fundamentals of Networking in AWS: VPC and Connectivity Options - Business
The Fundamentals of Networking in AWS: VPC and Connectivity Options - Business
 
Running Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
Running Microsoft SharePoint On AWS - Smartronix and AWS - WebinarRunning Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
Running Microsoft SharePoint On AWS - Smartronix and AWS - Webinar
 
Kubernetes Concepts And Architecture Powerpoint Presentation Slides
Kubernetes Concepts And Architecture Powerpoint Presentation SlidesKubernetes Concepts And Architecture Powerpoint Presentation Slides
Kubernetes Concepts And Architecture Powerpoint Presentation Slides
 
What is Docker Architecture | Edureka
What is Docker Architecture | EdurekaWhat is Docker Architecture | Edureka
What is Docker Architecture | Edureka
 
Best Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes ServicesBest Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes Services
 
Netflix Global Cloud Architecture
Netflix Global Cloud ArchitectureNetflix Global Cloud Architecture
Netflix Global Cloud Architecture
 
Best Practices for Integrating Active Directory with AWS Workloads
Best Practices for Integrating Active Directory with AWS WorkloadsBest Practices for Integrating Active Directory with AWS Workloads
Best Practices for Integrating Active Directory with AWS Workloads
 
First Steps with Apache Kafka on Google Cloud Platform
First Steps with Apache Kafka on Google Cloud PlatformFirst Steps with Apache Kafka on Google Cloud Platform
First Steps with Apache Kafka on Google Cloud Platform
 

Destaque

Cassandra Performance and Scalability on AWS
Cassandra Performance and Scalability on AWSCassandra Performance and Scalability on AWS
Cassandra Performance and Scalability on AWSAdrian Cockcroft
 
AWS Re:Invent - High Availability Architecture at Netflix
AWS Re:Invent - High Availability Architecture at NetflixAWS Re:Invent - High Availability Architecture at Netflix
AWS Re:Invent - High Availability Architecture at NetflixAdrian Cockcroft
 
Bottleneck analysis - Devopsdays Silicon Valley 2013
Bottleneck analysis - Devopsdays Silicon Valley 2013Bottleneck analysis - Devopsdays Silicon Valley 2013
Bottleneck analysis - Devopsdays Silicon Valley 2013Adrian Cockcroft
 
Flowcon (added to for CMG) Keynote talk on how Speed Wins and how Netflix is ...
Flowcon (added to for CMG) Keynote talk on how Speed Wins and how Netflix is ...Flowcon (added to for CMG) Keynote talk on how Speed Wins and how Netflix is ...
Flowcon (added to for CMG) Keynote talk on how Speed Wins and how Netflix is ...Adrian Cockcroft
 
Yow Conference Dec 2013 Netflix Workshop Slides with Notes
Yow Conference Dec 2013 Netflix Workshop Slides with NotesYow Conference Dec 2013 Netflix Workshop Slides with Notes
Yow Conference Dec 2013 Netflix Workshop Slides with NotesAdrian Cockcroft
 
Gluecon 2013 - NetflixOSS Cloud Native Tutorial Introduction
Gluecon 2013 - NetflixOSS Cloud Native Tutorial IntroductionGluecon 2013 - NetflixOSS Cloud Native Tutorial Introduction
Gluecon 2013 - NetflixOSS Cloud Native Tutorial IntroductionAdrian Cockcroft
 
CMG2013 Workshop: Netflix Cloud Native, Capacity, Performance and Cost Optimi...
CMG2013 Workshop: Netflix Cloud Native, Capacity, Performance and Cost Optimi...CMG2013 Workshop: Netflix Cloud Native, Capacity, Performance and Cost Optimi...
CMG2013 Workshop: Netflix Cloud Native, Capacity, Performance and Cost Optimi...Adrian Cockcroft
 
Dystopia as a Service
Dystopia as a ServiceDystopia as a Service
Dystopia as a ServiceAdrian Cockcroft
 
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)Adrian Cockcroft
 
Netflix and Open Source
Netflix and Open SourceNetflix and Open Source
Netflix and Open SourceAdrian Cockcroft
 
SV Forum Platform Architecture SIG - Netflix Open Source Platform
SV Forum Platform Architecture SIG - Netflix Open Source PlatformSV Forum Platform Architecture SIG - Netflix Open Source Platform
SV Forum Platform Architecture SIG - Netflix Open Source PlatformAdrian Cockcroft
 
Speeding Up Innovation
Speeding Up InnovationSpeeding Up Innovation
Speeding Up InnovationAdrian Cockcroft
 
MicroServices at Netflix - challenges of scale
MicroServices at Netflix - challenges of scaleMicroServices at Netflix - challenges of scale
MicroServices at Netflix - challenges of scaleSudhir Tonse
 
Microservices Workshop All Topics Deck 2016
Microservices Workshop All Topics Deck 2016Microservices Workshop All Topics Deck 2016
Microservices Workshop All Topics Deck 2016Adrian Cockcroft
 
Craig Kerstiens - Scalable Uniques in Postgres @ Postgres Open
Craig Kerstiens - Scalable Uniques in Postgres @ Postgres OpenCraig Kerstiens - Scalable Uniques in Postgres @ Postgres Open
Craig Kerstiens - Scalable Uniques in Postgres @ Postgres OpenPostgresOpen
 
Ari xivo astricon_2016
Ari xivo astricon_2016Ari xivo astricon_2016
Ari xivo astricon_2016Sylvain Boily
 
xPad - Building Simple Tablet OS with Gtk/WebKit
xPad - Building Simple Tablet OS with Gtk/WebKitxPad - Building Simple Tablet OS with Gtk/WebKit
xPad - Building Simple Tablet OS with Gtk/WebKitPing-Hsun Chen
 

Destaque (20)

Cassandra Performance and Scalability on AWS
Cassandra Performance and Scalability on AWSCassandra Performance and Scalability on AWS
Cassandra Performance and Scalability on AWS
 
AWS Re:Invent - High Availability Architecture at Netflix
AWS Re:Invent - High Availability Architecture at NetflixAWS Re:Invent - High Availability Architecture at Netflix
AWS Re:Invent - High Availability Architecture at Netflix
 
Bottleneck analysis - Devopsdays Silicon Valley 2013
Bottleneck analysis - Devopsdays Silicon Valley 2013Bottleneck analysis - Devopsdays Silicon Valley 2013
Bottleneck analysis - Devopsdays Silicon Valley 2013
 
Flowcon (added to for CMG) Keynote talk on how Speed Wins and how Netflix is ...
Flowcon (added to for CMG) Keynote talk on how Speed Wins and how Netflix is ...Flowcon (added to for CMG) Keynote talk on how Speed Wins and how Netflix is ...
Flowcon (added to for CMG) Keynote talk on how Speed Wins and how Netflix is ...
 
Yow Conference Dec 2013 Netflix Workshop Slides with Notes
Yow Conference Dec 2013 Netflix Workshop Slides with NotesYow Conference Dec 2013 Netflix Workshop Slides with Notes
Yow Conference Dec 2013 Netflix Workshop Slides with Notes
 
Gluecon 2013 - NetflixOSS Cloud Native Tutorial Introduction
Gluecon 2013 - NetflixOSS Cloud Native Tutorial IntroductionGluecon 2013 - NetflixOSS Cloud Native Tutorial Introduction
Gluecon 2013 - NetflixOSS Cloud Native Tutorial Introduction
 
CMG2013 Workshop: Netflix Cloud Native, Capacity, Performance and Cost Optimi...
CMG2013 Workshop: Netflix Cloud Native, Capacity, Performance and Cost Optimi...CMG2013 Workshop: Netflix Cloud Native, Capacity, Performance and Cost Optimi...
CMG2013 Workshop: Netflix Cloud Native, Capacity, Performance and Cost Optimi...
 
Dystopia as a Service
Dystopia as a ServiceDystopia as a Service
Dystopia as a Service
 
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
 
Gluecon keynote
Gluecon keynoteGluecon keynote
Gluecon keynote
 
NetflixOSS Meetup
NetflixOSS MeetupNetflixOSS Meetup
NetflixOSS Meetup
 
Netflix and Open Source
Netflix and Open SourceNetflix and Open Source
Netflix and Open Source
 
SV Forum Platform Architecture SIG - Netflix Open Source Platform
SV Forum Platform Architecture SIG - Netflix Open Source PlatformSV Forum Platform Architecture SIG - Netflix Open Source Platform
SV Forum Platform Architecture SIG - Netflix Open Source Platform
 
Speeding Up Innovation
Speeding Up InnovationSpeeding Up Innovation
Speeding Up Innovation
 
MicroServices at Netflix - challenges of scale
MicroServices at Netflix - challenges of scaleMicroServices at Netflix - challenges of scale
MicroServices at Netflix - challenges of scale
 
Microservices Workshop All Topics Deck 2016
Microservices Workshop All Topics Deck 2016Microservices Workshop All Topics Deck 2016
Microservices Workshop All Topics Deck 2016
 
Culture
CultureCulture
Culture
 
Craig Kerstiens - Scalable Uniques in Postgres @ Postgres Open
Craig Kerstiens - Scalable Uniques in Postgres @ Postgres OpenCraig Kerstiens - Scalable Uniques in Postgres @ Postgres Open
Craig Kerstiens - Scalable Uniques in Postgres @ Postgres Open
 
Ari xivo astricon_2016
Ari xivo astricon_2016Ari xivo astricon_2016
Ari xivo astricon_2016
 
xPad - Building Simple Tablet OS with Gtk/WebKit
xPad - Building Simple Tablet OS with Gtk/WebKitxPad - Building Simple Tablet OS with Gtk/WebKit
xPad - Building Simple Tablet OS with Gtk/WebKit
 

Semelhante a Architectures for High Availability - QConSF

ARC203 Highly Available Architecture at Netflix - AWS re: Invent 2012
ARC203 Highly Available Architecture at Netflix - AWS re: Invent 2012ARC203 Highly Available Architecture at Netflix - AWS re: Invent 2012
ARC203 Highly Available Architecture at Netflix - AWS re: Invent 2012Amazon Web Services
 
Netflix presents at MassTLC Cloud Summit 2013
Netflix presents at MassTLC Cloud Summit 2013Netflix presents at MassTLC Cloud Summit 2013
Netflix presents at MassTLC Cloud Summit 2013MassTLC
 
Cloudian_Cassandra Summit 2012
Cloudian_Cassandra Summit 2012Cloudian_Cassandra Summit 2012
Cloudian_Cassandra Summit 2012CLOUDIAN KK
 
AWS for Start-ups - Case Study - Go Squared
AWS for Start-ups - Case Study - Go SquaredAWS for Start-ups - Case Study - Go Squared
AWS for Start-ups - Case Study - Go SquaredAmazon Web Services
 
Web Scale Applications using NeflixOSS Cloud Platform
Web Scale Applications using NeflixOSS Cloud PlatformWeb Scale Applications using NeflixOSS Cloud Platform
Web Scale Applications using NeflixOSS Cloud PlatformSudhir Tonse
 
Ram chinta hug-20120922-v1
Ram chinta hug-20120922-v1Ram chinta hug-20120922-v1
Ram chinta hug-20120922-v1Ram Chinta
 
ARC301 Intro to Chaos Monkey & the Simian Army - AWS re: Invent 2012
ARC301 Intro to Chaos Monkey & the Simian Army - AWS re: Invent 2012ARC301 Intro to Chaos Monkey & the Simian Army - AWS re: Invent 2012
ARC301 Intro to Chaos Monkey & the Simian Army - AWS re: Invent 2012Amazon Web Services
 
Open stack in sina
Open stack in sinaOpen stack in sina
Open stack in sinaHui Cheng
 
Microservices reativos usando a stack do Netflix na AWS
Microservices reativos usando a stack do Netflix na AWSMicroservices reativos usando a stack do Netflix na AWS
Microservices reativos usando a stack do Netflix na AWSDiego Pacheco
 
게임을 위한 Cloud Native on AWS (김일호 솔루션즈 아키텍트, AWS) :: Gaming on AWS 2018
게임을 위한 Cloud Native on AWS (김일호 솔루션즈 아키텍트, AWS) :: Gaming on AWS 2018게임을 위한 Cloud Native on AWS (김일호 솔루션즈 아키텍트, AWS) :: Gaming on AWS 2018
게임을 위한 Cloud Native on AWS (김일호 솔루션즈 아키텍트, AWS) :: Gaming on AWS 2018Amazon Web Services Korea
 
How Netflix’s Tools Can Help Accelerate Your Start-up (SVC202) | AWS re:Inven...
How Netflix’s Tools Can Help Accelerate Your Start-up (SVC202) | AWS re:Inven...How Netflix’s Tools Can Help Accelerate Your Start-up (SVC202) | AWS re:Inven...
How Netflix’s Tools Can Help Accelerate Your Start-up (SVC202) | AWS re:Inven...Amazon Web Services
 
Svc 202-netflix-open-source
Svc 202-netflix-open-sourceSvc 202-netflix-open-source
Svc 202-netflix-open-sourceRuslan Meshenberg
 
Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...
Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...
Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...IndicThreads
 
C* Summit 2013: Netflix Open Source Tools and Benchmarks for Cassandra by Adr...
C* Summit 2013: Netflix Open Source Tools and Benchmarks for Cassandra by Adr...C* Summit 2013: Netflix Open Source Tools and Benchmarks for Cassandra by Adr...
C* Summit 2013: Netflix Open Source Tools and Benchmarks for Cassandra by Adr...DataStax Academy
 
Running High Availability Websites with Acquia and AWS
Running High Availability Websites with Acquia and AWSRunning High Availability Websites with Acquia and AWS
Running High Availability Websites with Acquia and AWSAcquia
 
Servers fail, who cares?
Servers fail, who cares? Servers fail, who cares?
Servers fail, who cares? greggulrich
 
Randall Hunt - AWS Midwest Community Day Keynote
Randall Hunt - AWS Midwest Community Day KeynoteRandall Hunt - AWS Midwest Community Day Keynote
Randall Hunt - AWS Midwest Community Day KeynoteAWS Chicago
 
Gluecon Monitoring Microservices and Containers: A Challenge
Gluecon Monitoring Microservices and Containers: A ChallengeGluecon Monitoring Microservices and Containers: A Challenge
Gluecon Monitoring Microservices and Containers: A ChallengeAdrian Cockcroft
 
Best Practices Scaling Web Application Up to Your First 10 Million Users
Best Practices Scaling Web Application Up to Your First 10 Million UsersBest Practices Scaling Web Application Up to Your First 10 Million Users
Best Practices Scaling Web Application Up to Your First 10 Million UsersAmazon Web Services
 

Semelhante a Architectures for High Availability - QConSF (20)

ARC203 Highly Available Architecture at Netflix - AWS re: Invent 2012
ARC203 Highly Available Architecture at Netflix - AWS re: Invent 2012ARC203 Highly Available Architecture at Netflix - AWS re: Invent 2012
ARC203 Highly Available Architecture at Netflix - AWS re: Invent 2012
 
Netflix presents at MassTLC Cloud Summit 2013
Netflix presents at MassTLC Cloud Summit 2013Netflix presents at MassTLC Cloud Summit 2013
Netflix presents at MassTLC Cloud Summit 2013
 
Cloudian_Cassandra Summit 2012
Cloudian_Cassandra Summit 2012Cloudian_Cassandra Summit 2012
Cloudian_Cassandra Summit 2012
 
AWS for Start-ups - Case Study - Go Squared
AWS for Start-ups - Case Study - Go SquaredAWS for Start-ups - Case Study - Go Squared
AWS for Start-ups - Case Study - Go Squared
 
Web Scale Applications using NeflixOSS Cloud Platform
Web Scale Applications using NeflixOSS Cloud PlatformWeb Scale Applications using NeflixOSS Cloud Platform
Web Scale Applications using NeflixOSS Cloud Platform
 
Ram chinta hug-20120922-v1
Ram chinta hug-20120922-v1Ram chinta hug-20120922-v1
Ram chinta hug-20120922-v1
 
ARC301 Intro to Chaos Monkey & the Simian Army - AWS re: Invent 2012
ARC301 Intro to Chaos Monkey & the Simian Army - AWS re: Invent 2012ARC301 Intro to Chaos Monkey & the Simian Army - AWS re: Invent 2012
ARC301 Intro to Chaos Monkey & the Simian Army - AWS re: Invent 2012
 
Open stack in sina
Open stack in sinaOpen stack in sina
Open stack in sina
 
Microservices reativos usando a stack do Netflix na AWS
Microservices reativos usando a stack do Netflix na AWSMicroservices reativos usando a stack do Netflix na AWS
Microservices reativos usando a stack do Netflix na AWS
 
게임을 위한 Cloud Native on AWS (김일호 솔루션즈 아키텍트, AWS) :: Gaming on AWS 2018
게임을 위한 Cloud Native on AWS (김일호 솔루션즈 아키텍트, AWS) :: Gaming on AWS 2018게임을 위한 Cloud Native on AWS (김일호 솔루션즈 아키텍트, AWS) :: Gaming on AWS 2018
게임을 위한 Cloud Native on AWS (김일호 솔루션즈 아키텍트, AWS) :: Gaming on AWS 2018
 
Introduction to AWS tools
Introduction to AWS toolsIntroduction to AWS tools
Introduction to AWS tools
 
How Netflix’s Tools Can Help Accelerate Your Start-up (SVC202) | AWS re:Inven...
How Netflix’s Tools Can Help Accelerate Your Start-up (SVC202) | AWS re:Inven...How Netflix’s Tools Can Help Accelerate Your Start-up (SVC202) | AWS re:Inven...
How Netflix’s Tools Can Help Accelerate Your Start-up (SVC202) | AWS re:Inven...
 
Svc 202-netflix-open-source
Svc 202-netflix-open-sourceSvc 202-netflix-open-source
Svc 202-netflix-open-source
 
Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...
Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...
Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...
 
C* Summit 2013: Netflix Open Source Tools and Benchmarks for Cassandra by Adr...
C* Summit 2013: Netflix Open Source Tools and Benchmarks for Cassandra by Adr...C* Summit 2013: Netflix Open Source Tools and Benchmarks for Cassandra by Adr...
C* Summit 2013: Netflix Open Source Tools and Benchmarks for Cassandra by Adr...
 
Running High Availability Websites with Acquia and AWS
Running High Availability Websites with Acquia and AWSRunning High Availability Websites with Acquia and AWS
Running High Availability Websites with Acquia and AWS
 
Servers fail, who cares?
Servers fail, who cares? Servers fail, who cares?
Servers fail, who cares?
 
Randall Hunt - AWS Midwest Community Day Keynote
Randall Hunt - AWS Midwest Community Day KeynoteRandall Hunt - AWS Midwest Community Day Keynote
Randall Hunt - AWS Midwest Community Day Keynote
 
Gluecon Monitoring Microservices and Containers: A Challenge
Gluecon Monitoring Microservices and Containers: A ChallengeGluecon Monitoring Microservices and Containers: A Challenge
Gluecon Monitoring Microservices and Containers: A Challenge
 
Best Practices Scaling Web Application Up to Your First 10 Million Users
Best Practices Scaling Web Application Up to Your First 10 Million UsersBest Practices Scaling Web Application Up to Your First 10 Million Users
Best Practices Scaling Web Application Up to Your First 10 Million Users
 

Mais de Adrian Cockcroft

Netflix Global Applications - NoSQL Search Roadshow
Netflix Global Applications - NoSQL Search RoadshowNetflix Global Applications - NoSQL Search Roadshow
Netflix Global Applications - NoSQL Search RoadshowAdrian Cockcroft
 
Cloud Architecture Tutorial - Why and What (1of 3)
Cloud Architecture Tutorial - Why and What (1of 3) Cloud Architecture Tutorial - Why and What (1of 3)
Cloud Architecture Tutorial - Why and What (1of 3) Adrian Cockcroft
 
Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Cloud Architecture Tutorial - Platform Component Architecture (2of3)Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Cloud Architecture Tutorial - Platform Component Architecture (2of3)Adrian Cockcroft
 
Cloud Architecture Tutorial - Running in the Cloud (3of3)
Cloud Architecture Tutorial - Running in the Cloud (3of3)Cloud Architecture Tutorial - Running in the Cloud (3of3)
Cloud Architecture Tutorial - Running in the Cloud (3of3)Adrian Cockcroft
 
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...Adrian Cockcroft
 
Migrating Netflix from Datacenter Oracle to Global Cassandra
Migrating Netflix from Datacenter Oracle to Global CassandraMigrating Netflix from Datacenter Oracle to Global Cassandra
Migrating Netflix from Datacenter Oracle to Global CassandraAdrian Cockcroft
 
Netflix Velocity Conference 2011
Netflix Velocity Conference 2011Netflix Velocity Conference 2011
Netflix Velocity Conference 2011Adrian Cockcroft
 
Migrating to Public Cloud
Migrating to Public CloudMigrating to Public Cloud
Migrating to Public CloudAdrian Cockcroft
 
Performance architecture for cloud connect
Performance architecture for cloud connectPerformance architecture for cloud connect
Performance architecture for cloud connectAdrian Cockcroft
 
Netflix in the cloud 2011
Netflix in the cloud 2011Netflix in the cloud 2011
Netflix in the cloud 2011Adrian Cockcroft
 
Cmg06 utilization is useless
Cmg06 utilization is uselessCmg06 utilization is useless
Cmg06 utilization is uselessAdrian Cockcroft
 
Netflix on Cloud - combined slides for Dev and Ops
Netflix on Cloud - combined slides for Dev and OpsNetflix on Cloud - combined slides for Dev and Ops
Netflix on Cloud - combined slides for Dev and OpsAdrian Cockcroft
 

Mais de Adrian Cockcroft (13)

Netflix Global Applications - NoSQL Search Roadshow
Netflix Global Applications - NoSQL Search RoadshowNetflix Global Applications - NoSQL Search Roadshow
Netflix Global Applications - NoSQL Search Roadshow
 
Cloud Architecture Tutorial - Why and What (1of 3)
Cloud Architecture Tutorial - Why and What (1of 3) Cloud Architecture Tutorial - Why and What (1of 3)
Cloud Architecture Tutorial - Why and What (1of 3)
 
Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Cloud Architecture Tutorial - Platform Component Architecture (2of3)Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Cloud Architecture Tutorial - Platform Component Architecture (2of3)
 
Cloud Architecture Tutorial - Running in the Cloud (3of3)
Cloud Architecture Tutorial - Running in the Cloud (3of3)Cloud Architecture Tutorial - Running in the Cloud (3of3)
Cloud Architecture Tutorial - Running in the Cloud (3of3)
 
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
 
Migrating Netflix from Datacenter Oracle to Global Cassandra
Migrating Netflix from Datacenter Oracle to Global CassandraMigrating Netflix from Datacenter Oracle to Global Cassandra
Migrating Netflix from Datacenter Oracle to Global Cassandra
 
Netflix Velocity Conference 2011
Netflix Velocity Conference 2011Netflix Velocity Conference 2011
Netflix Velocity Conference 2011
 
Migrating to Public Cloud
Migrating to Public CloudMigrating to Public Cloud
Migrating to Public Cloud
 
Performance architecture for cloud connect
Performance architecture for cloud connectPerformance architecture for cloud connect
Performance architecture for cloud connect
 
Netflix in the cloud 2011
Netflix in the cloud 2011Netflix in the cloud 2011
Netflix in the cloud 2011
 
Cmg06 utilization is useless
Cmg06 utilization is uselessCmg06 utilization is useless
Cmg06 utilization is useless
 
Netflix on Cloud - combined slides for Dev and Ops
Netflix on Cloud - combined slides for Dev and OpsNetflix on Cloud - combined slides for Dev and Ops
Netflix on Cloud - combined slides for Dev and Ops
 
NoSQL for Netflix
NoSQL for NetflixNoSQL for Netflix
NoSQL for Netflix
 

Último

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel AraĂşjo
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Último (20)

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Architectures for High Availability - QConSF

  • 1. Architectural Patterns for High Anxiety Availability November 2012 Adrian Cockcroft @adrianco #netflixcloud #qconsf http://www.linkedin.com/in/adriancockcroft @adrianco
  • 2. The Netflix Streaming Service Now in USA, Canada, Latin America, UK, Ireland, Sweden, Denm ark, Norway and Finland @adrianco
  • 3. US Non-Member Web Site Advertising and Marketing Driven @adrianco
  • 4. Member Web Site Personalization Driven @adrianco
  • 6. Content Delivery Service Distributed storage nodes controlled by Netflix cloud services @adrianco
  • 8. Abstract • Netflix on Cloud – What, Why and When • Globally Distributed Architecture • Benchmarks and Scalability • Open Source Components • High Anxiety @adrianco
  • 9. Blah Blah Blah (I’m skipping all the cloud intro etc. did that last year… Netflix runs in the cloud, if you hadn’t figured that out already you aren’t paying attention and should go read Infoq and slideshare.net/netflix) @adrianco
  • 10. Things we don’t do @adrianco
  • 11. Things We Do Do… In production at Netflix • Big Data/Hadoop 2009 • AWS Cloud 2009 • Application Performance Management 2010 • Integrated DevOps Practices 2010 • Continuous Integration/Delivery 2010 • NoSQL, Globally Distributed 2010 • Platform as a Service; Micro-Services 2010 • Social coding, open development/github 2011 @adrianco
  • 12. How Netflix Works Consumer Electronics User Data Web Site or AWS Cloud Discovery API Services Personalization CDN Edge Locations DRM Customer Device Streaming API (PC, PS3, TV…) QoS Logging CDN Management and Steering OpenConnect CDN Boxes Content Encoding @adrianco
  • 13. Web Server Dependencies Flow (Home page business transaction as seen by AppDynamics) Each icon is three to a few hundred instances across three AWS zones Cassandra memcached Web service Start Here S3 bucket Personalization movie group chooser @adrianco
  • 14. Component Micro-Services Test With Chaos Monkey, Latency Monkey @adrianco
  • 15. Three Balanced Availability Zones Test with Chaos Gorilla Load Balancers Zone A Zone B Zone C Cassandra and Evcache Cassandra and Evcache Cassandra and Evcache Replicas Replicas Replicas @adrianco
  • 16. Triple Replicated Persistence Cassandra maintenance affects individual replicas Load Balancers Zone A Zone B Zone C Cassandra and Evcache Cassandra and Evcache Cassandra and Evcache Replicas Replicas Replicas @adrianco
  • 17. Isolated Regions US-East Load Balancers EU-West Load Balancers Zone A Zone B Zone C Zone A Zone B Zone C Cassandra Replicas Cassandra Replicas Cassandra Replicas Cassandra Replicas Cassandra Replicas Cassandra Replicas @adrianco
  • 18. Failure Modes and Effects Failure Mode Probability Mitigation Plan Application Failure High Automatic degraded response AWS Region Failure Low Wait for region to recover AWS Zone Failure Medium Continue to run on 2 out of 3 zones Datacenter Failure Medium Migrate more functions to cloud Data store failure Low Restore from S3 backups S3 failure Low Restore from remote archive @adrianco
  • 19. Zone Failure Modes • Power Outage – Instances lost, ephemeral state lost – Clean break and recovery, fail fast, “no route to host” • Network Outage – Instances isolated, state inconsistent – More complex symptoms, recovery issues, transients • Dependent Service Outage – Cascading failures, misbehaving instances, human errors – Confusing symptoms, recovery issues, byzantine effects More detail on this topic at AWS Re:Invent later this month… @adrianco
  • 20. Cassandra backed Micro-Services A highly scalable, available and durable deployment pattern @adrianco
  • 21. Micro-Service Pattern One keyspace, replaces a single table or materialized view Single function Cassandra Many Different Single-Function REST Clients Cluster Managed by Priam Between 6 and 72 nodes Stateless Data Access REST Service Astyanax Cassandra Client Optional Each icon represents a horizontally scaled service of three to Datacenter hundreds of instances deployed over three availability zones Update Flow Appdynamics Service Flow Visualization @adrianco
  • 22. Stateless Micro-Service Architecture Linux Base AMI (CentOS or Ubuntu) Optional Apache frontend, memcache Java (JDK 6 or 7) d, non-java apps AppDynamics appagent monitoring Tomcat Monitoring Application war file, base servlet, Log rotation to S3 Healthcheck, status servlets, JMX platform, client interface jars, AppDynamics GC and thread dump interface, Servo autoscale Astyanax machineagent logging Epic/Atlas @adrianco
  • 23. Astyanax Available at http://github.com/netflix • Features – Complete abstraction of connection pool from RPC protocol – Fluent Style API – Operation retry with backoff – Token aware • Recipes – Distributed row lock (without zookeeper) – Multi-DC row lock – Uniqueness constraint – Multi-row uniqueness constraint – Chunked and multi-threaded large file storage @adrianco
  • 24. Astyanax Query Example Paginate through all columns in a row ColumnList<String> columns; int pageize = 10; try { RowQuery<String, String> query = keyspace .prepareQuery(CF_STANDARD1) .getKey("A") .setIsPaginating() .withColumnRange(new RangeBuilder().setMaxSize(pageize).build()); while (!(columns = query.execute().getResult()).isEmpty()) { for (Column<String> c : columns) { } } } catch (ConnectionException e) { } @adrianco
  • 25. Astyanax - Cassandra Write Data Flows Single Region, Multiple Availability Zone, Token Aware Cassandra •Disks •Zone A 1. Client Writes to local Cassandra 3 2Cassandra If a node goes coordinator •Disks4 3•Disks 4 offline, hinted handoff 2. Coodinator writes to •Zone C 1 •Zone B completes the write 2 other zones Token when the node comes 3. Nodes return ack back up. 4. Data written to Aware internal commit log Clients Requests can choose to disks (no more than Cassandra Cassandra wait for one node, a 10 seconds later) •Disks •Disks quorum, or all nodes to •Zone B •Zone C ack the write Cassandra 3 SSTable disk writes and •Disks 4 compactions occur •Zone A asynchronously @adrianco
  • 26. Data Flows for Multi-Region Writes Token Aware, Consistency Level = Local Quorum 1. Client writes to local replicas If a node or region goes offline, hinted handoff 2. Local write acks returned to completes the write when the node comes back up. Client which continues when Nightly global compare and repair jobs ensure 2 of 3 local nodes are everything stays consistent. committed 3. Local coordinator writes to remote coordinator. 100+ms latency Cassandra Cassandra 4. When data arrives, remote • Disks • Zone A • Disks • Zone A coordinator node acks and Cassandra 2 2 Cassandra Cassandra 4Cassandra 6 • Disks • Disks 6 3 5• Disks6 4 Disks6 copies to other remote zones • Zone C 1 • Zone B • Zone C • • Zone B 4 5. Remote nodes ack to local US EU coordinator Clients Clients Cassandra 2 Cassandra Cassandra Cassandra 6. Data flushed to internal • Disks • Zone B • Disks • Zone C 6 • Disks • Zone B • Disks • Zone C commit log disks (no more Cassandra 5 6Cassandra • Disks than 10 seconds later) • Zone A • Disks • Zone A @adrianco
  • 27. Cassandra Instance Architecture Linux Base AMI (CentOS or Ubuntu) Tomcat and Priam on JDK Java (JDK 7) Healthcheck, Status AppDynamics appagent monitoring Cassandra Server Monitoring Local Ephemeral Disk Space – 2TB of SSD or 1.6TB disk holding Commit log and AppDynamics GC and thread dump SSTables machineagent logging Epic/Atlas @adrianco
  • 28. Priam – Cassandra Automation Available at http://github.com/netflix • Netflix Platform Tomcat Code • Zero touch auto-configuration • State management for Cassandra JVM • Token allocation and assignment • Broken node auto-replacement • Full and incremental backup to S3 • Restore sequencing from S3 • Grow/Shrink Cassandra “ring” @adrianco
  • 29. Cassandra Backup • Full Backup Cassandra Cassandra Cassandra – Time based snapshot – SSTable compress -> S3 Cassandra Cassandra • Incremental S3 Backup Cassandra Cassandra – SSTable write triggers compressed copy to S3 Cassandra Cassandra • Archive Cassandra Cassandra – Copy cross region A @adrianco
  • 30. Deployment at Netflix Over 50 Cassandra Clusters Over 500 m2.4xlg+hi1.4xlg Over 30TB of daily backups Biggest cluster 72 nodes 1 cluster over 250Kwrites/s @adrianco
  • 31. Cassandra Explorer for Data Open source on github soon @adrianco
  • 32. ETL for Cassandra • Data is de-normalized over many clusters! • Too many to restore from backups for ETL • Solution – read backup files using Hadoop • Aegisthus – http://techblog.netflix.com/2012/02/aegisthus-bulk-data-pipeline-out-of.html – High throughput raw SSTable processing – Re-normalizes many clusters to a consistent view – Extract, Transform, then Load into Teradata @adrianco
  • 34. Cloud Deployment Scalability New Autoscaled AMI – zero to 500 instances from 21:38:52 - 21:46:32, 7m40s Scaled up and down over a few days, total 2176 instance launches, m2.2xlarge (4 core 34GB) Min. 1st Qu. Median Mean 3rd Qu. Max. 41.0 104.2 149.0 171.8 215.8 562.0 @adrianco
  • 35. Scalability from 48 to 288 nodes on AWS http://techblog.netflix.com/2011/11/benchmarking-cassandra-scalability-on.html Client Writes/s by node count – Replication Factor = 3 1200000 1099837 1000000 800000 Used 288 of m1.xlarge 600000 4 CPU, 15 GB RAM, 8 ECU 537172 Cassandra 0.86 400000 Benchmark config only 366828 existed for about 1hr 200000 174373 0 0 50 100 150 200 250 300 350 @adrianco
  • 36. “Some people skate to the puck, I skate to where the puck is going to be” Wayne Gretzky @adrianco
  • 37. Cassandra on AWS The Past The Future • Instance: m2.4xlarge • Instance: hi1.4xlarge • Storage: 2 drives, 1.7TB • Storage: 2 SSD volumes, 2TB • CPU: 8 Cores, 26 ECU • CPU: 8 HT cores, 35 ECU • RAM: 68GB • RAM: 64GB • Network: 1Gbit • Network: 10Gbit • IOPS: ~500 • IOPS: ~100,000 • Throughput: ~100Mbyte/s • Throughput: ~1Gbyte/s • Cost: $1.80/hr • Cost: $3.10/hr @adrianco
  • 38. Cassandra Disk vs. SSD Benchmark Same Throughput, Lower Latency, Half Cost @adrianco
  • 39. Netflix Open Source Strategy • Release PaaS Components git-by-git – Source at github.com/netflix – we build from it… – Intros and techniques at techblog.netflix.com – Blog post or new code every few weeks • Motivations – Give back to Apache licensed OSS community – Motivate, retain, hire top engineers – “Peer pressure” code cleanup, external contributions @adrianco
  • 40. Instance creation Bakery & Build tools Asgard Base AMI Instance Autoscaling Application Odin Code scripts Image baked ASG / Instance started Instance Running @adrianco
  • 41. Application Launch Governator Eureka (Guice) Async logging Archaius Edda Servo Service Application initializing Registry, configuration history @adrianco
  • 42. Runtime Astyanax Priam Curator Chaos Monkey Latency Monkey NIWS Exhibitor LB Janitor Monkey REST Cass JMeter Dependency client Command Explorers Client Side Server Side Resiliency aids Components Components @adrianco
  • 43. Open Source Projects Legend Github / Techblog Priam Exhibitor Servo and Autoscaling Scripts Apache Contributions Cassandra as a Service Zookeeper as a Service Astyanax Curator Honu Techblog Post Cassandra client for Java Zookeeper Patterns Log4j streaming to Hadoop Coming Soon CassJMeter EVCache Circuit Breaker Cassandra test suite Memcached as a Service Robust service pattern Cassandra Multi-region EC2 Eureka / Discovery Asgard - AutoScaleGroup datastore support Service Directory based AWS console Aegisthus Archaius Chaos Monkey Hadoop ETL for Cassandra Dynamics Properties Service Robustness verification Edda Explorers Latency Monkey Queryable config history Governator - Library lifecycle Server-side latency/error Janitor Monkey and dependency injection injection Odin REST Client + mid-tier LB Bakeries and AMI Workflow orchestration Async logging Configuration REST endpoints Build dynaslaves @adrianco
  • 44. Cassandra Next Steps • Migrate Production Cassandra to SSD – Many clusters done – 100+ SSD nodes running • Autoscale Cassandra using Priam – Cassandra 1.2 Vnodes make this easier – Shrink Cassandra cluster every night • Automated Zone and Region Operations – Add/Remove Zone, split or merge clusters – Add/Remove Region, split or merge clusters @adrianco
  • 46. Skynet A Netflix Hackday project that might just terminate the world… (hack currently only implemented in Powerpoint – luckly) @adrianco
  • 47. The Plot (kinda) • Skynet is a sentient computer • Skynet defends itself if you try to turn it off • Connor is the guy who eventually turns it off • Terminator is the robot sent to kill Connor @adrianco
  • 48. The Hacktors • Cass_skynet is a self-managing Cassandra cluster • Connor_monkey kills cass_skynet nodes • Terminator_monkey kills connor_monkey nodes @adrianco
  • 49. The Hacktion • Cass_skynet stores a history of its world and action scripts that trigger from what it sees • Action response to losing a node – Auto-replace node and grow cluster size • Action response to losing more nodes – Replicate cluster into a new zone or region • Action response to seeing a Connor_monkey – Startup a Terminator_monkey @adrianco
  • 50. Implementation • Priam – Autoreplace missing nodes – Grow cass_skynet cluster in zone, to new zones or regions • Cassandra Keyspaces – Actions – scripts to be run – Memory – record event log of everything seen • Cron job once a minute – Extract actions from Cassandra and execute – Log actions and results in memory • Chaos Monkey configuration – Terminator_monkey: pick a zone, kill any connor_monkey – Connor_monkey: kill any cass_skynet or terminator_monkey @adrianco
  • 53. Takeaway Netflix has built and deployed a scalable global platform based on Cassandra and AWS. Key components of the Netflix PaaS are being released as Open Source projects so you can build your own custom PaaS. SSD’s in the cloud are awesome…. http://github.com/Netflix http://techblog.netflix.com http://slideshare.net/Netflix http://www.linkedin.com/in/adriancockcroft @adrianco http://perfcap.blogspot.com @adrianco

Notas do Editor

  1. Complete connection pool abstractionQueries and mutations wrapped in objects created by the Keyspace implementation making it possible to retry failed operations.  This varies from other connection pool implementations on which the operation is created on a specific connection and must be completely redone if it fails.Simplified serialization via method overloading.  The low level thrift library only understands data that is serialized to a byte array.  Hector requires serializers to be specified for nearly every call.  Astyanax minimizes the places where serializers are specified by using predefined ColumnFamiliy and ColumnPath definitions which specify the serializers.  The API also overloads set and get operation for common data types.The internal library does not log anything.  All internal events are instead ... calls to a ConnectionPoolMonitor interface.  This allows customization of log levels and filtering of repeating events outside of the scope of the connection poolSuper columns will soon be replaced by Composite column names. As such it is recommended to not use super columns at all and to use Composite column names instead. There is some support for super columns in Astyanax but those methods have been deprecated and will eventually be removed.