Five years of EC2
          distilled
                  Grig Gheorghiu

Silicon Valley Cloud Computing Meetup, Feb. 19th 2013

                     @griggheo
             agiletesting.blogspot.com
whoami

• Dir of Technology at Reliam (managed
  hosting)
• Sr Sys Architect at OpenX
• VP Technical Ops at Evite
• VP Technical Ops at Nasty Gal
EC2 creds

• Started with personal m1.small instance in
    2008
• Still around!
• UPTIME:
•   5:13:52 up 438 days, 23:33,   1 user,   load average:
    0.03, 0.09, 0.08
EC2 at OpenX
• end of 2008
• 100s then 1000s of instances
• one of largest AWS customers at the time
• NAMING is very important
 • terminated DB server by mistake
 • in ideal world naming doesn’t matter
EC2 at OpenX (cont.)
• Failures are very frequent at scale
• Forced to architect for failure and
  horizontal scaling
• Hard to scale at all layers at the same time
  (scaling app server layer can overwhelm DB
  layer; play wack-a-mole)
• Elasticity: easier to scale out than scale back
EC2 at OpenX (cont.)
• Automation and configuration management
  become critical
 • Used little-known tool - ‘slack’
 • Rolled own EC2 management tool in
    Python, wrapped around EC2 Java API
 • Testing deployments is critical (one
    mistake can get propagated everywhere)
EC2 at OpenX (cont.)
• Hard to scale at the DB layer (MySQL)
 • mysql-proxy for r/w split
 • slaves behind HAProxy for reads
• HAProxy for LB, then ELB
 • ELB melted initially, had to be gradually
    warmed up
EC2 at Evite

• Sharded MySQL at DB layer; application
  very write-intensive
• Didn’t do proper capacity planning/dark
  launching; had to move quickly from data
  center to EC2 to scale horizontally
• Engaged Percona at the same time
EC2 at Evite (cont.)
• Started with EBS volumes (separate for
  data, transaction logs, temp files)
• EBS horror stories
• CPU Wait up to 100%, instances AWOL
• I/O very inconsistent, unpredictable
• Striped EBS volumes in RAID0 helps with
  performance but not with reliability
EC2 at Evite (cont.)
•   EBS apocalypse in April 2011

•   Hit us even with masters and slaves in diff.
    availability zones (but all in single region -
    mistake!)

•   IMPORTANT: rebuilding redundancy into your
    system is HARD

•   For DB servers, reloading data on new server is
    a lengthy process
EC2 at Evite (cont.)
• General operation: very frequent failures
  (once a week); nightmare for pager duty
• Got very good at disaster recovery!
  •   Failover of master to slave

  •   Rebuilding of slave from master (xtrabackup)

• Local disks striped in RAID0 better than
  EBS
EC2 at Evite (cont.)
• Ended up moving DB servers back to data
  center
• Bare metal (Dell C2100, 144 GB RAM,
  RAID10); 2 MySQL instances per server
• Lots of tuning help from Percona
• BUT: EC2 was great for capacity planning!
  (Zynga does the same)
EC2 at Evite (cont.)
• Relational databases are not ready for the
  cloud (reliability, I/O performance)
• Still keep MySQL slaves in EC2 for DR
• Ryan Macktechnologies so“Wecould better
  understood
              (Facebook):
                           we
                              chose well-

  predict capacity needs and rely on our existing
  monitoring and operational tool kits."
EC2 at Evite (cont.)
• Didn’t use provisioned IOPS for EBS
• Didn’t use VPC
• Great experience with Elastic Map Reduce,
  S3, Route 53 DNS
• Not so great experience with DynamoDB
• ELB OK but still need HAProxy behind it
EC2 at NastyGal
• VPC - really good idea!
 • Extension of data center infrastructure
 • Currently using it for dev/staging + some
    internal backend production
 • Challenging to set up VPN tunnels to
    various firewall vendors (Cisco, Fortinet)
    - not much debugging on VPC side
Interacting with AWS
• AWS API (mostly Java based, but also Ruby
  and Python)
• Multi-cloud libraries: jclouds (Java), libcloud
  (Python), deltacloud (Ruby)
• Chef knife
• Vagrant EC2 provider
• Roll your own
Proper infrastructure care
              and feeding
• Monitoring - alerting, logging, graphing
• It’s not in production if it’s not monitored
  and graphed
• Monitoring is for ops what testing is for
  dev
  • Great way to learn a new infrastructure
  • Dev and ops on pager
Proper infrastructure care
       and feeding
• Going from #monitoringsucks to
  #monitoringlove and @monitorama
• Modern monitoring/graphing/logging tools
 • Sensu, Graphite, Boundary, Server
    Density, New Relic, Papertrail, Pingdom,
    Dead Man’s Snitch
Proper infrastructure care
       and feeding
•   Dashboards!

•   Mission Control page with graphs based on
    Graphite and Google Visualization API

•   Correlate spikes and dips in graphs with errors
    (external and internal monitoring)

    •   Akamai HTTP 500 alerts correlated with Web
        server 500 errors and DB server I/O wait
        increase
Proper infrastructure care
       and feeding



•   HTTP 500 errors as a percentage of all HTTP
    requests across all app servers in the last 60
    minutes
Proper infrastructure care
       and feeding
•   Expect failures and recover quickly

•   Capacity planning
    •   Dark launching

    •   Measure baselines

    •   Correlate external symptoms (HTTP 500) with
        metrics (CPU I/O Wait) then keep metrics
        under certain thresholds by adding resources
Proper infrastructure care
       and feeding
•   Automate, automate, automate! - Chef, Puppet,
    CFEngine, Jenkins, Capistrano, Fabric

•   Chef - can be single source of truth for
    infrastructure
    •   Running chef-client continuously on nodes
        requires discipline

    •   Logging into remote node is anti-pattern (hard!)
Proper infrastructure care
       and feeding
•   Chef best practices

    •   Use knife - no snowflakes!

    •   Deploy new nodes, don’t do massive updates
        in place

•   BUT! beware of OS monoculture

    •   kernel bug after 200+ days

    •   leapocalypse
Is the cloud worth the
          hype?
•   It’s a game changer, but it’s not magical; try before
    you buy! (benchmarks could surprise you)

•   Cloud expert? Carry pager or STFU

•   Forces you to think about failure recovery,
    horizontal scalability, automation

•   Something to be said about abstracting away the
    physical network - the most obscure bugs are
    network-related (ARP caching, routing tables)
So...when should I use
      the cloud?
• Great for dev/staging/testing
• Great for layers of infrastructure that
  contain many identical nodes and that are
  forgiving of node failures (web farms,
  Hadoop nodes, distributed databases)
• Not great for ‘snowflake’-type systems
• Not great for RDBMS (esp. write-intensive)
If you still want to use
       the cloud
•   Watch that monthly bill!

•   Use multiple cloud vendors
•   Design your infrastructure to scale horizontally
    and to be portable across cloud vendors

    •   Shared nothing

    •   No SAN, NAS
If you still want to use
       the cloud
•   Don’t get locked into vendor-proprietary
    services
    •   EC2, S3, Route 53, EMR are OK

    •   Data stores are not OK (DynamoDB)

    •   OpsWorks - debatable (based on Chef, but still
        locks you in)

    •   Wrap services in your own RESTful endpoints
Does EC2 have rivals?
•   No (or at least not yet)
•   Anybody use GCE?
•   Other public clouds are either toys or
    smaller, with less features (no names named)
•   Perception matters - not a contender unless
    featured on High Scalability blog
•   APIs matter less (can use multi-cloud libs)
Does EC2 have rivals?
•   OpenStack, CloudStack, Eucalyptus all seem
    promising
•   Good approach: private infrastructure (bare
    metal, private cloud) for performance/
    reliability + extension into public cloud for
    elasticity/agility (EC2 VPC, Rack Connect)

• How about PaaS?
 • Personally: too hard to relinquish control

More Related Content

PPTX
Sas 2015 event_driven
PPT
DevOpsCon Cloud Workshop
PPT
Docker in the Cloud
PDF
FOSS4G In The Cloud: Using Open Source to build Cloud based Spatial Infrastru...
PPTX
Kubernetes at NU.nl (Kubernetes meetup 2019-09-05)
PDF
Active Cloud DB at CloudComp '10
PPTX
Dev-Friendly Ops
PPTX
Rainbows, Unicorns, and other Fairy Tales in the Land of Serverless Dreams
Sas 2015 event_driven
DevOpsCon Cloud Workshop
Docker in the Cloud
FOSS4G In The Cloud: Using Open Source to build Cloud based Spatial Infrastru...
Kubernetes at NU.nl (Kubernetes meetup 2019-09-05)
Active Cloud DB at CloudComp '10
Dev-Friendly Ops
Rainbows, Unicorns, and other Fairy Tales in the Land of Serverless Dreams

What's hot (19)

PDF
AppScale Talk at SBonRails
PDF
AppScale @ LA.rb
PDF
AppScale + Neptune @ HPCDB
PDF
Olivier_Tisserand_projects
PDF
Ph.D. Defense
PDF
Greenfields tech decisions
PDF
Fullstack DDD with ASP.NET Core and Anguar 2 - Ronald Harmsen, NForza
PPTX
How Serverless Changes DevOps
PDF
From vagrant to production - Mark Eijsermans
PPTX
Building a PaaS with Docker and AWS
PDF
SF Hadoop Users Group August 2014 Meetup Slides
PPTX
Campus days Azure HDInsight automation
PDF
Inrastructure as Code
PDF
Leveraging Docker and CoreOS to provide always available Cassandra at Instacl...
PDF
Applications in the Cloud
PDF
Neptune @ SoCal
PDF
Appscale at CLOUDCOMP '09
PDF
Deployment pipeline for Azure SQL Databases
PPT
Stacktician - CloudStack Collab Conference 2014
AppScale Talk at SBonRails
AppScale @ LA.rb
AppScale + Neptune @ HPCDB
Olivier_Tisserand_projects
Ph.D. Defense
Greenfields tech decisions
Fullstack DDD with ASP.NET Core and Anguar 2 - Ronald Harmsen, NForza
How Serverless Changes DevOps
From vagrant to production - Mark Eijsermans
Building a PaaS with Docker and AWS
SF Hadoop Users Group August 2014 Meetup Slides
Campus days Azure HDInsight automation
Inrastructure as Code
Leveraging Docker and CoreOS to provide always available Cassandra at Instacl...
Applications in the Cloud
Neptune @ SoCal
Appscale at CLOUDCOMP '09
Deployment pipeline for Azure SQL Databases
Stacktician - CloudStack Collab Conference 2014
Ad

Viewers also liked (6)

PDF
Tools I Carry
PDF
Thing. An unexpected journey. Devoxx UK 2014
PPTX
Government as a Platform
PDF
Agile Testing Pasadena JUG Aug2009
PDF
[デブサミ2012]趣味と実益の脆弱性発見
PDF
Picnic version: The Clothesline Paradox and the Sharing Economy (pdf with notes)
Tools I Carry
Thing. An unexpected journey. Devoxx UK 2014
Government as a Platform
Agile Testing Pasadena JUG Aug2009
[デブサミ2012]趣味と実益の脆弱性発見
Picnic version: The Clothesline Paradox and the Sharing Economy (pdf with notes)
Ad

Similar to Five Years of EC2 Distilled (20)

PDF
The Netflix Open Source Platform
PDF
SV Forum Platform Architecture SIG - Netflix Open Source Platform
PPTX
Moving to the Cloud: AWS, Zend, RightScale
PDF
How DreamHost builds a Public Cloud with OpenStack
PDF
How DreamHost builds a public cloud with OpenStack.pdf
PPTX
Running High Availability Websites with Acquia and AWS
PDF
Cloud Architecture Tutorial - Platform Component Architecture (2of3)
PDF
Scaling web application in the Cloud
PDF
Migrate and Govern Applications on Cloud Infrastructure
PDF
Pets vs. Cattle: The Elastic Cloud Story
PDF
Hybird Cloud - An adoption roadmap
PDF
Migrating to Public Cloud
PDF
Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...
PDF
Experiences from DevOps production: Deployment, performance, failure.
PPTX
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
PPTX
Sanger, upcoming Openstack for Bio-informaticians
PPTX
Flexible compute
PDF
AWS Cloud experience concepts tips and tricks
PPTX
Infrastructure Considerations : Design : "webops"
PPTX
Migrating enterprise workloads to AWS
The Netflix Open Source Platform
SV Forum Platform Architecture SIG - Netflix Open Source Platform
Moving to the Cloud: AWS, Zend, RightScale
How DreamHost builds a Public Cloud with OpenStack
How DreamHost builds a public cloud with OpenStack.pdf
Running High Availability Websites with Acquia and AWS
Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Scaling web application in the Cloud
Migrate and Govern Applications on Cloud Infrastructure
Pets vs. Cattle: The Elastic Cloud Story
Hybird Cloud - An adoption roadmap
Migrating to Public Cloud
Scalable Architecture on Amazon AWS Cloud - Indicthreads cloud computing conf...
Experiences from DevOps production: Deployment, performance, failure.
Openstack Summit Tokyo 2015 - Building a private cloud to efficiently handle ...
Sanger, upcoming Openstack for Bio-informaticians
Flexible compute
AWS Cloud experience concepts tips and tricks
Infrastructure Considerations : Design : "webops"
Migrating enterprise workloads to AWS

Recently uploaded (20)

PPTX
Benefits of Physical activity for teenagers.pptx
PPT
Geologic Time for studying geology for geologist
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
OpenACC and Open Hackathons Monthly Highlights July 2025
PPTX
The various Industrial Revolutions .pptx
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
Flame analysis and combustion estimation using large language and vision assi...
PDF
sustainability-14-14877-v2.pddhzftheheeeee
PPTX
Modernising the Digital Integration Hub
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
UiPath Agentic Automation session 1: RPA to Agents
DOCX
search engine optimization ppt fir known well about this
PDF
A review of recent deep learning applications in wood surface defect identifi...
PDF
sbt 2.0: go big (Scala Days 2025 edition)
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PDF
Abstractive summarization using multilingual text-to-text transfer transforme...
PDF
Produktkatalog für HOBO Datenlogger, Wetterstationen, Sensoren, Software und ...
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
Benefits of Physical activity for teenagers.pptx
Geologic Time for studying geology for geologist
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
Final SEM Unit 1 for mit wpu at pune .pptx
OpenACC and Open Hackathons Monthly Highlights July 2025
The various Industrial Revolutions .pptx
NewMind AI Weekly Chronicles – August ’25 Week III
Hindi spoken digit analysis for native and non-native speakers
Flame analysis and combustion estimation using large language and vision assi...
sustainability-14-14877-v2.pddhzftheheeeee
Modernising the Digital Integration Hub
Module 1.ppt Iot fundamentals and Architecture
UiPath Agentic Automation session 1: RPA to Agents
search engine optimization ppt fir known well about this
A review of recent deep learning applications in wood surface defect identifi...
sbt 2.0: go big (Scala Days 2025 edition)
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Abstractive summarization using multilingual text-to-text transfer transforme...
Produktkatalog für HOBO Datenlogger, Wetterstationen, Sensoren, Software und ...
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx

Five Years of EC2 Distilled

  • 1. Five years of EC2 distilled Grig Gheorghiu Silicon Valley Cloud Computing Meetup, Feb. 19th 2013 @griggheo agiletesting.blogspot.com
  • 2. whoami • Dir of Technology at Reliam (managed hosting) • Sr Sys Architect at OpenX • VP Technical Ops at Evite • VP Technical Ops at Nasty Gal
  • 3. EC2 creds • Started with personal m1.small instance in 2008 • Still around! • UPTIME: • 5:13:52 up 438 days, 23:33, 1 user, load average: 0.03, 0.09, 0.08
  • 4. EC2 at OpenX • end of 2008 • 100s then 1000s of instances • one of largest AWS customers at the time • NAMING is very important • terminated DB server by mistake • in ideal world naming doesn’t matter
  • 5. EC2 at OpenX (cont.) • Failures are very frequent at scale • Forced to architect for failure and horizontal scaling • Hard to scale at all layers at the same time (scaling app server layer can overwhelm DB layer; play wack-a-mole) • Elasticity: easier to scale out than scale back
  • 6. EC2 at OpenX (cont.) • Automation and configuration management become critical • Used little-known tool - ‘slack’ • Rolled own EC2 management tool in Python, wrapped around EC2 Java API • Testing deployments is critical (one mistake can get propagated everywhere)
  • 7. EC2 at OpenX (cont.) • Hard to scale at the DB layer (MySQL) • mysql-proxy for r/w split • slaves behind HAProxy for reads • HAProxy for LB, then ELB • ELB melted initially, had to be gradually warmed up
  • 8. EC2 at Evite • Sharded MySQL at DB layer; application very write-intensive • Didn’t do proper capacity planning/dark launching; had to move quickly from data center to EC2 to scale horizontally • Engaged Percona at the same time
  • 9. EC2 at Evite (cont.) • Started with EBS volumes (separate for data, transaction logs, temp files) • EBS horror stories • CPU Wait up to 100%, instances AWOL • I/O very inconsistent, unpredictable • Striped EBS volumes in RAID0 helps with performance but not with reliability
  • 10. EC2 at Evite (cont.) • EBS apocalypse in April 2011 • Hit us even with masters and slaves in diff. availability zones (but all in single region - mistake!) • IMPORTANT: rebuilding redundancy into your system is HARD • For DB servers, reloading data on new server is a lengthy process
  • 11. EC2 at Evite (cont.) • General operation: very frequent failures (once a week); nightmare for pager duty • Got very good at disaster recovery! • Failover of master to slave • Rebuilding of slave from master (xtrabackup) • Local disks striped in RAID0 better than EBS
  • 12. EC2 at Evite (cont.) • Ended up moving DB servers back to data center • Bare metal (Dell C2100, 144 GB RAM, RAID10); 2 MySQL instances per server • Lots of tuning help from Percona • BUT: EC2 was great for capacity planning! (Zynga does the same)
  • 13. EC2 at Evite (cont.) • Relational databases are not ready for the cloud (reliability, I/O performance) • Still keep MySQL slaves in EC2 for DR • Ryan Macktechnologies so“Wecould better understood (Facebook): we chose well- predict capacity needs and rely on our existing monitoring and operational tool kits."
  • 14. EC2 at Evite (cont.) • Didn’t use provisioned IOPS for EBS • Didn’t use VPC • Great experience with Elastic Map Reduce, S3, Route 53 DNS • Not so great experience with DynamoDB • ELB OK but still need HAProxy behind it
  • 15. EC2 at NastyGal • VPC - really good idea! • Extension of data center infrastructure • Currently using it for dev/staging + some internal backend production • Challenging to set up VPN tunnels to various firewall vendors (Cisco, Fortinet) - not much debugging on VPC side
  • 16. Interacting with AWS • AWS API (mostly Java based, but also Ruby and Python) • Multi-cloud libraries: jclouds (Java), libcloud (Python), deltacloud (Ruby) • Chef knife • Vagrant EC2 provider • Roll your own
  • 17. Proper infrastructure care and feeding • Monitoring - alerting, logging, graphing • It’s not in production if it’s not monitored and graphed • Monitoring is for ops what testing is for dev • Great way to learn a new infrastructure • Dev and ops on pager
  • 18. Proper infrastructure care and feeding • Going from #monitoringsucks to #monitoringlove and @monitorama • Modern monitoring/graphing/logging tools • Sensu, Graphite, Boundary, Server Density, New Relic, Papertrail, Pingdom, Dead Man’s Snitch
  • 19. Proper infrastructure care and feeding • Dashboards! • Mission Control page with graphs based on Graphite and Google Visualization API • Correlate spikes and dips in graphs with errors (external and internal monitoring) • Akamai HTTP 500 alerts correlated with Web server 500 errors and DB server I/O wait increase
  • 20. Proper infrastructure care and feeding • HTTP 500 errors as a percentage of all HTTP requests across all app servers in the last 60 minutes
  • 21. Proper infrastructure care and feeding • Expect failures and recover quickly • Capacity planning • Dark launching • Measure baselines • Correlate external symptoms (HTTP 500) with metrics (CPU I/O Wait) then keep metrics under certain thresholds by adding resources
  • 22. Proper infrastructure care and feeding • Automate, automate, automate! - Chef, Puppet, CFEngine, Jenkins, Capistrano, Fabric • Chef - can be single source of truth for infrastructure • Running chef-client continuously on nodes requires discipline • Logging into remote node is anti-pattern (hard!)
  • 23. Proper infrastructure care and feeding • Chef best practices • Use knife - no snowflakes! • Deploy new nodes, don’t do massive updates in place • BUT! beware of OS monoculture • kernel bug after 200+ days • leapocalypse
  • 24. Is the cloud worth the hype? • It’s a game changer, but it’s not magical; try before you buy! (benchmarks could surprise you) • Cloud expert? Carry pager or STFU • Forces you to think about failure recovery, horizontal scalability, automation • Something to be said about abstracting away the physical network - the most obscure bugs are network-related (ARP caching, routing tables)
  • 25. So...when should I use the cloud? • Great for dev/staging/testing • Great for layers of infrastructure that contain many identical nodes and that are forgiving of node failures (web farms, Hadoop nodes, distributed databases) • Not great for ‘snowflake’-type systems • Not great for RDBMS (esp. write-intensive)
  • 26. If you still want to use the cloud • Watch that monthly bill! • Use multiple cloud vendors • Design your infrastructure to scale horizontally and to be portable across cloud vendors • Shared nothing • No SAN, NAS
  • 27. If you still want to use the cloud • Don’t get locked into vendor-proprietary services • EC2, S3, Route 53, EMR are OK • Data stores are not OK (DynamoDB) • OpsWorks - debatable (based on Chef, but still locks you in) • Wrap services in your own RESTful endpoints
  • 28. Does EC2 have rivals? • No (or at least not yet) • Anybody use GCE? • Other public clouds are either toys or smaller, with less features (no names named) • Perception matters - not a contender unless featured on High Scalability blog • APIs matter less (can use multi-cloud libs)
  • 29. Does EC2 have rivals? • OpenStack, CloudStack, Eucalyptus all seem promising • Good approach: private infrastructure (bare metal, private cloud) for performance/ reliability + extension into public cloud for elasticity/agility (EC2 VPC, Rack Connect) • How about PaaS? • Personally: too hard to relinquish control