SlideShare una empresa de Scribd logo
1 de 16
Descargar para leer sin conexión
Best Practices for Scaling Websites


                        Randy Shoup
                 eBay Distinguished Architect




QCon Asia 2009
Challenges at Internet Scale


• eBay manages …
  – 86.3 million active users worldwide
  – 120 million items for sale in 50,000 categories
  – Over 2 billion page views per day

    – eBay users trade over $2000 in goods every
      second -- $60 billion per year
    – eBay site stores over 2 PB of data
    – eBay processes 50 TB of new, incremental data
      per day
    – eBay Data Warehouse analyzes 50 PB per day


       • In a dynamic environment
           – 300+ features per quarter
           – We roll 100,000+ lines of code every two weeks

             • In 39 countries, in 8 languages, 24x7x365
                        >48 Billion SQL executions/day!

                                                              © 2009 eBay Inc.
Architectural Forces at Internet Scale

• Scalability
   – Resource usage should increase linearly (or better!) with load
   – Design for 10x growth in data, traffic, users, etc.
• Availability
   – Resilience to failure (MTBF)
   – Rapid recoverability from failure (MTTR)
   – Graceful degradation
• Latency
   – User experience latency
   – Data latency
• Manageability
   – Simplicity
   – Maintainability
   – Diagnostics
• Cost
   – Development effort and complexity
   – Operational cost (TCO)



                                                                      © 2009 eBay Inc.
Best Practices for Scaling



1. Partition Everything
2. Asynchrony Everywhere
3. Automate Everything
4. Remember Everything Fails
5. Embrace Inconsistency




                               © 2009 eBay Inc.
Best Practice 1: Partition Everything


• Split every problem into manageable chunks
   – By data, load, and/or usage pattern
   – “If you can’t split it, you can’t scale it”


• Motivations
   –   Scalability: can scale horizontally and independently
   –   Availability: can isolate failures
   –   Manageability: can decouple different segments and functional areas
   –   Cost: can use less expensive hardware




                                                                             © 2009 eBay Inc.
Best Practice 1: Partition Everything


Pattern: Functional Segmentation
   – Segment processing into pools, services, and stages
   – Segment data along usage boundaries



Pattern: Horizontal Split
   – Load-balance processing
       •   Within a pool, all servers are created equal
   – Split (or “shard”) data along primary access path
       •   Partition by range, modulo of a key, lookup, etc.




Corollary: No Session State
   – User session flow moves through multiple application pools
   – Absolutely no session state in application tier




                                                                  © 2009 eBay Inc.
Best Practice 2: Asynchrony Everywhere

• Prefer Asynchronous Processing
   – Move as much processing as possible to asynchronous flows
   – Where possible, integrate disparate components asynchronously


• Motivations
   – Scalability: can scale components independently
   – Availability
      • Can decouple availability state
      • Can retry operations
   – Latency
      • Can significantly improve user experience latency at cost of data/execution latency
      • Can allocate more time to processing than user would tolerate
   – Cost: can spread peak load over time




                                                                                              © 2009 eBay Inc.
Best Practice 2: Asynchrony Everywhere


Pattern: Event Queue
   – Primary use-case produces event
       •   Create event (ITEM.NEW, ITEM.SOLD) transactionally
           with primary insert/update
   – Consumers subscribe to event
       •   At least once delivery
       •   No guaranteed order
       •   Idempotency and readback


Pattern: Message Multicast
   – Search Feeder publishes item updates
       •   Reads item updates from primary database
       •   Publishes sequenced updates via SRM-inspired protocol
   – Nodes listen to assigned subset of messages
       •   Update in-memory index in real time
       •   Request recovery (NAK) when messages
           are missed




                                                                   © 2009 eBay Inc.
Best Practice 3: Automate Everything

• Prefer Adaptive / Automated Systems to Manual Systems

• Motivations
   – Scalability
      • Can scale with machines, not humans
   – Availability / Latency
      • Can adapt to changing environment more rapidly
   – Cost
      • Machines are far less expensive than humans
      • Can learn / improve / adjust over time without manual effort




                                                                       © 2009 eBay Inc.
Best Practice 3: Automate Everything


Pattern: Adaptive Configuration
   – Define SLA for a given logical consumer
       •   E.g., 99% of events processed in 15 seconds
   – Dynamically adjust config to meet defined SLA




Pattern: Machine Learning
   – Dynamically adapt search experience
       •   Determine best inventory and assemble optimal page for that user
           and context
   – Feedback loop enables system to learn and improve over time
       •   Collect user behavior
       •   Aggregate and analyze offline
       •   Deploy updated metadata
       •   Decide and serve appropriate experience
   – Perturbation and dampening




                                                                              © 2009 eBay Inc.
Best Practice 4: Remember Everything Fails

• Build all systems to be tolerant of failure
   –   Assume every operation will fail and every resource will be unavailable
   –   Detect failure as rapidly as possible
   –   Recover from failure as rapidly as possible
   –   Do as much as possible during failure


• Motivation
   – Availability




                                                                                 © 2009 eBay Inc.
Best Practice 4: Remember Everything Fails


Pattern: Failure Detection
   – Servers log all requests
       •   Log all application activity, database and service calls on
           multicast message bus
       •   Over 2TB of log messages per day
   – Listeners automate failure detection and notification


Pattern: Rollback
   – Absolutely no changes to the site which cannot be undone (!)
   – Every feature has on / off state driven by central configuration
       •   Feature can be immediately turned off for operational or business reasons
       •   Features can be deployed “wired-off” to unroll dependencies


Pattern: Graceful Degradation
   – Application “marks down” an unavailable or distressed resource
   – Non-critical functionality is removed or ignored
   – Critical functionality is retried or deferred




                                                                                       © 2009 eBay Inc.
Best Practice 5: Embrace Inconsistency

• Brewer’s CAP Theorem
  – Any shared-data system can have at most two of the following properties:
     • Consistency: All clients see the same data, even in the presence of updates
     • Availability: All clients will get a response, even in the presence of failures
     • Partition-tolerance: The system properties hold even when the network is partitioned

  – This trade-off is fundamental to all distributed systems




                                                                                              © 2009 eBay Inc.
Best Practice 5: Embrace Inconsistency


Choose Appropriate Consistency Guarantees
   –   To guarantee availability and partition-tolerance, we trade off immediate consistency
   –   Most real-world systems (even financial systems!) do not require immediate consistency
   –   Consistency is a spectrum
   –   Prefer eventual consistency to immediate consistency




Avoid Distributed Transactions
   – eBay does absolutely no distributed transactions – no two-phase commit
   – Minimize inconsistency through state machines and careful ordering of operations
   – Eventual consistency through asynchronous event or reconciliation batch




                                                                                                © 2009 eBay Inc.
Recap: Best Practices for Scaling



1. Partition Everything
2. Asynchrony Everywhere
3. Automate Everything
4. Remember Everything Fails
5. Embrace Inconsistency




                                    © 2009 eBay Inc.
Questions?




 About the Presenter
 Randy Shoup has been the primary architect for eBay's search
 infrastructure since 2004. Prior to eBay, Randy was Chief Architect and
 Technical Fellow at Tumbleweed Communications, and has also held a
 variety of software development and architecture roles at Oracle and
 Informatica.
 rshoup@ebay.com




                                                                       © 2009 eBay Inc.

Más contenido relacionado

La actualidad más candente

1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...Christoph Adler
 
Using Dashboards to Transform Application Data Visualization
Using Dashboards to Transform Application Data VisualizationUsing Dashboards to Transform Application Data Visualization
Using Dashboards to Transform Application Data VisualizationKathy Brown
 
Designing Highly-Available Architectures for OTM
Designing Highly-Available Architectures for OTMDesigning Highly-Available Architectures for OTM
Designing Highly-Available Architectures for OTMMavenWire
 
Scaling High Traffic Web Applications
Scaling High Traffic Web ApplicationsScaling High Traffic Web Applications
Scaling High Traffic Web ApplicationsAchievers Tech
 
Logging Wars: A Cross-Product Tech Clash Between Experts
Logging Wars: A Cross-Product Tech Clash Between Experts Logging Wars: A Cross-Product Tech Clash Between Experts
Logging Wars: A Cross-Product Tech Clash Between Experts Benedek Menesi
 

La actualidad más candente (6)

Os(vijayanand)
Os(vijayanand)Os(vijayanand)
Os(vijayanand)
 
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
 
Using Dashboards to Transform Application Data Visualization
Using Dashboards to Transform Application Data VisualizationUsing Dashboards to Transform Application Data Visualization
Using Dashboards to Transform Application Data Visualization
 
Designing Highly-Available Architectures for OTM
Designing Highly-Available Architectures for OTMDesigning Highly-Available Architectures for OTM
Designing Highly-Available Architectures for OTM
 
Scaling High Traffic Web Applications
Scaling High Traffic Web ApplicationsScaling High Traffic Web Applications
Scaling High Traffic Web Applications
 
Logging Wars: A Cross-Product Tech Clash Between Experts
Logging Wars: A Cross-Product Tech Clash Between Experts Logging Wars: A Cross-Product Tech Clash Between Experts
Logging Wars: A Cross-Product Tech Clash Between Experts
 

Destacado

Qcon 10个提高架构质量的观点
Qcon 10个提高架构质量的观点Qcon 10个提高架构质量的观点
Qcon 10个提高架构质量的观点youzitang
 
Memcached浅析 韩建华
Memcached浅析 韩建华Memcached浅析 韩建华
Memcached浅析 韩建华youzitang
 
Qcon flex体系架构深度剖析
Qcon flex体系架构深度剖析Qcon flex体系架构深度剖析
Qcon flex体系架构深度剖析youzitang
 
Qcon ria的技术趋势和应用趋势
Qcon ria的技术趋势和应用趋势Qcon ria的技术趋势和应用趋势
Qcon ria的技术趋势和应用趋势youzitang
 
Qcon multi team sprint planning
Qcon multi team sprint planningQcon multi team sprint planning
Qcon multi team sprint planningyouzitang
 
Qcon java在企业级开发中的应用
Qcon java在企业级开发中的应用Qcon java在企业级开发中的应用
Qcon java在企业级开发中的应用youzitang
 
所谓闭包
所谓闭包所谓闭包
所谓闭包youzitang
 
Qcon sun的云计算平台和技术实现
Qcon sun的云计算平台和技术实现Qcon sun的云计算平台和技术实现
Qcon sun的云计算平台和技术实现youzitang
 
Qcon ria与geo web连横共进
Qcon ria与geo web连横共进Qcon ria与geo web连横共进
Qcon ria与geo web连横共进youzitang
 

Destacado (9)

Qcon 10个提高架构质量的观点
Qcon 10个提高架构质量的观点Qcon 10个提高架构质量的观点
Qcon 10个提高架构质量的观点
 
Memcached浅析 韩建华
Memcached浅析 韩建华Memcached浅析 韩建华
Memcached浅析 韩建华
 
Qcon flex体系架构深度剖析
Qcon flex体系架构深度剖析Qcon flex体系架构深度剖析
Qcon flex体系架构深度剖析
 
Qcon ria的技术趋势和应用趋势
Qcon ria的技术趋势和应用趋势Qcon ria的技术趋势和应用趋势
Qcon ria的技术趋势和应用趋势
 
Qcon multi team sprint planning
Qcon multi team sprint planningQcon multi team sprint planning
Qcon multi team sprint planning
 
Qcon java在企业级开发中的应用
Qcon java在企业级开发中的应用Qcon java在企业级开发中的应用
Qcon java在企业级开发中的应用
 
所谓闭包
所谓闭包所谓闭包
所谓闭包
 
Qcon sun的云计算平台和技术实现
Qcon sun的云计算平台和技术实现Qcon sun的云计算平台和技术实现
Qcon sun的云计算平台和技术实现
 
Qcon ria与geo web连横共进
Qcon ria与geo web连横共进Qcon ria与geo web连横共进
Qcon ria与geo web连横共进
 

Similar a Best Practices for Scaling Websites

eBay’s Challenges and Lessons
eBay’s Challenges and LessonseBay’s Challenges and Lessons
eBay’s Challenges and Lessonshutuworm
 
Best Practices for Large-Scale Web Sites
Best Practices for Large-Scale Web SitesBest Practices for Large-Scale Web Sites
Best Practices for Large-Scale Web SitesCraig Dickson
 
071310 sun d_0930_feldman_stephen
071310 sun d_0930_feldman_stephen071310 sun d_0930_feldman_stephen
071310 sun d_0930_feldman_stephenSteve Feldman
 
10 Tips for Your Journey to the Public Cloud
10 Tips for Your Journey to the Public Cloud10 Tips for Your Journey to the Public Cloud
10 Tips for Your Journey to the Public CloudIntuit Inc.
 
The Hard Problems of Continuous Deployment
The Hard Problems of Continuous DeploymentThe Hard Problems of Continuous Deployment
The Hard Problems of Continuous DeploymentTimothy Fitz
 
Infrastructure as Data with Ansible for easier Continuous Delivery
Infrastructure as Data with Ansible for easier Continuous DeliveryInfrastructure as Data with Ansible for easier Continuous Delivery
Infrastructure as Data with Ansible for easier Continuous DeliveryCarlo Bonamico
 
The Unbearable Lightness of Ephemeral Processing
The Unbearable Lightness of Ephemeral ProcessingThe Unbearable Lightness of Ephemeral Processing
The Unbearable Lightness of Ephemeral ProcessingDataWorks Summit
 
Goal driven performance optimization (Пётр Зайцев)
Goal driven performance optimization (Пётр Зайцев)Goal driven performance optimization (Пётр Зайцев)
Goal driven performance optimization (Пётр Зайцев)Ontico
 
New Approaches to Faster Oracle Forms System Performance
New Approaches to Faster Oracle Forms System PerformanceNew Approaches to Faster Oracle Forms System Performance
New Approaches to Faster Oracle Forms System PerformanceCorrelsense
 
Tiger oracle
Tiger oracleTiger oracle
Tiger oracled0nn9n
 
Building data intensive applications
Building data intensive applicationsBuilding data intensive applications
Building data intensive applicationsAmit Kejriwal
 
Cloud Economics for Java at Java2Days
Cloud Economics for Java at Java2DaysCloud Economics for Java at Java2Days
Cloud Economics for Java at Java2DaysSteve Poole
 
CIRCUIT 2015 - Akamai: Caching and Beyond
CIRCUIT 2015 - Akamai:  Caching and BeyondCIRCUIT 2015 - Akamai:  Caching and Beyond
CIRCUIT 2015 - Akamai: Caching and BeyondICF CIRCUIT
 
Azug - successfully breeding rabits
Azug - successfully breeding rabitsAzug - successfully breeding rabits
Azug - successfully breeding rabitsYves Goeleven
 
S016579 data-optimization-spectrum-control-brazil-v2
S016579 data-optimization-spectrum-control-brazil-v2S016579 data-optimization-spectrum-control-brazil-v2
S016579 data-optimization-spectrum-control-brazil-v2Tony Pearson
 
Refactoring Into Microservices 2016-11-08
Refactoring Into Microservices 2016-11-08Refactoring Into Microservices 2016-11-08
Refactoring Into Microservices 2016-11-08Derek Ashmore
 
Creating a culture of cost management
Creating a culture of cost managementCreating a culture of cost management
Creating a culture of cost managementCloudability
 
Impact 2013 2963 - IBM Business Process Manager Top Practices
Impact 2013 2963 - IBM Business Process Manager Top PracticesImpact 2013 2963 - IBM Business Process Manager Top Practices
Impact 2013 2963 - IBM Business Process Manager Top PracticesBrian Petrini
 

Similar a Best Practices for Scaling Websites (20)

eBay’s Challenges and Lessons
eBay’s Challenges and LessonseBay’s Challenges and Lessons
eBay’s Challenges and Lessons
 
Best Practices for Large-Scale Web Sites
Best Practices for Large-Scale Web SitesBest Practices for Large-Scale Web Sites
Best Practices for Large-Scale Web Sites
 
071310 sun d_0930_feldman_stephen
071310 sun d_0930_feldman_stephen071310 sun d_0930_feldman_stephen
071310 sun d_0930_feldman_stephen
 
10 Tips for Your Journey to the Public Cloud
10 Tips for Your Journey to the Public Cloud10 Tips for Your Journey to the Public Cloud
10 Tips for Your Journey to the Public Cloud
 
The Hard Problems of Continuous Deployment
The Hard Problems of Continuous DeploymentThe Hard Problems of Continuous Deployment
The Hard Problems of Continuous Deployment
 
Infrastructure as Data with Ansible for easier Continuous Delivery
Infrastructure as Data with Ansible for easier Continuous DeliveryInfrastructure as Data with Ansible for easier Continuous Delivery
Infrastructure as Data with Ansible for easier Continuous Delivery
 
The Unbearable Lightness of Ephemeral Processing
The Unbearable Lightness of Ephemeral ProcessingThe Unbearable Lightness of Ephemeral Processing
The Unbearable Lightness of Ephemeral Processing
 
Goal driven performance optimization (Пётр Зайцев)
Goal driven performance optimization (Пётр Зайцев)Goal driven performance optimization (Пётр Зайцев)
Goal driven performance optimization (Пётр Зайцев)
 
New Approaches to Faster Oracle Forms System Performance
New Approaches to Faster Oracle Forms System PerformanceNew Approaches to Faster Oracle Forms System Performance
New Approaches to Faster Oracle Forms System Performance
 
Cloud computing
Cloud computingCloud computing
Cloud computing
 
Master.pptx
Master.pptxMaster.pptx
Master.pptx
 
Tiger oracle
Tiger oracleTiger oracle
Tiger oracle
 
Building data intensive applications
Building data intensive applicationsBuilding data intensive applications
Building data intensive applications
 
Cloud Economics for Java at Java2Days
Cloud Economics for Java at Java2DaysCloud Economics for Java at Java2Days
Cloud Economics for Java at Java2Days
 
CIRCUIT 2015 - Akamai: Caching and Beyond
CIRCUIT 2015 - Akamai:  Caching and BeyondCIRCUIT 2015 - Akamai:  Caching and Beyond
CIRCUIT 2015 - Akamai: Caching and Beyond
 
Azug - successfully breeding rabits
Azug - successfully breeding rabitsAzug - successfully breeding rabits
Azug - successfully breeding rabits
 
S016579 data-optimization-spectrum-control-brazil-v2
S016579 data-optimization-spectrum-control-brazil-v2S016579 data-optimization-spectrum-control-brazil-v2
S016579 data-optimization-spectrum-control-brazil-v2
 
Refactoring Into Microservices 2016-11-08
Refactoring Into Microservices 2016-11-08Refactoring Into Microservices 2016-11-08
Refactoring Into Microservices 2016-11-08
 
Creating a culture of cost management
Creating a culture of cost managementCreating a culture of cost management
Creating a culture of cost management
 
Impact 2013 2963 - IBM Business Process Manager Top Practices
Impact 2013 2963 - IBM Business Process Manager Top PracticesImpact 2013 2963 - IBM Business Process Manager Top Practices
Impact 2013 2963 - IBM Business Process Manager Top Practices
 

Best Practices for Scaling Websites

  • 1. Best Practices for Scaling Websites Randy Shoup eBay Distinguished Architect QCon Asia 2009
  • 2. Challenges at Internet Scale • eBay manages … – 86.3 million active users worldwide – 120 million items for sale in 50,000 categories – Over 2 billion page views per day – eBay users trade over $2000 in goods every second -- $60 billion per year – eBay site stores over 2 PB of data – eBay processes 50 TB of new, incremental data per day – eBay Data Warehouse analyzes 50 PB per day • In a dynamic environment – 300+ features per quarter – We roll 100,000+ lines of code every two weeks • In 39 countries, in 8 languages, 24x7x365 >48 Billion SQL executions/day! © 2009 eBay Inc.
  • 3. Architectural Forces at Internet Scale • Scalability – Resource usage should increase linearly (or better!) with load – Design for 10x growth in data, traffic, users, etc. • Availability – Resilience to failure (MTBF) – Rapid recoverability from failure (MTTR) – Graceful degradation • Latency – User experience latency – Data latency • Manageability – Simplicity – Maintainability – Diagnostics • Cost – Development effort and complexity – Operational cost (TCO) © 2009 eBay Inc.
  • 4. Best Practices for Scaling 1. Partition Everything 2. Asynchrony Everywhere 3. Automate Everything 4. Remember Everything Fails 5. Embrace Inconsistency © 2009 eBay Inc.
  • 5. Best Practice 1: Partition Everything • Split every problem into manageable chunks – By data, load, and/or usage pattern – “If you can’t split it, you can’t scale it” • Motivations – Scalability: can scale horizontally and independently – Availability: can isolate failures – Manageability: can decouple different segments and functional areas – Cost: can use less expensive hardware © 2009 eBay Inc.
  • 6. Best Practice 1: Partition Everything Pattern: Functional Segmentation – Segment processing into pools, services, and stages – Segment data along usage boundaries Pattern: Horizontal Split – Load-balance processing • Within a pool, all servers are created equal – Split (or “shard”) data along primary access path • Partition by range, modulo of a key, lookup, etc. Corollary: No Session State – User session flow moves through multiple application pools – Absolutely no session state in application tier © 2009 eBay Inc.
  • 7. Best Practice 2: Asynchrony Everywhere • Prefer Asynchronous Processing – Move as much processing as possible to asynchronous flows – Where possible, integrate disparate components asynchronously • Motivations – Scalability: can scale components independently – Availability • Can decouple availability state • Can retry operations – Latency • Can significantly improve user experience latency at cost of data/execution latency • Can allocate more time to processing than user would tolerate – Cost: can spread peak load over time © 2009 eBay Inc.
  • 8. Best Practice 2: Asynchrony Everywhere Pattern: Event Queue – Primary use-case produces event • Create event (ITEM.NEW, ITEM.SOLD) transactionally with primary insert/update – Consumers subscribe to event • At least once delivery • No guaranteed order • Idempotency and readback Pattern: Message Multicast – Search Feeder publishes item updates • Reads item updates from primary database • Publishes sequenced updates via SRM-inspired protocol – Nodes listen to assigned subset of messages • Update in-memory index in real time • Request recovery (NAK) when messages are missed © 2009 eBay Inc.
  • 9. Best Practice 3: Automate Everything • Prefer Adaptive / Automated Systems to Manual Systems • Motivations – Scalability • Can scale with machines, not humans – Availability / Latency • Can adapt to changing environment more rapidly – Cost • Machines are far less expensive than humans • Can learn / improve / adjust over time without manual effort © 2009 eBay Inc.
  • 10. Best Practice 3: Automate Everything Pattern: Adaptive Configuration – Define SLA for a given logical consumer • E.g., 99% of events processed in 15 seconds – Dynamically adjust config to meet defined SLA Pattern: Machine Learning – Dynamically adapt search experience • Determine best inventory and assemble optimal page for that user and context – Feedback loop enables system to learn and improve over time • Collect user behavior • Aggregate and analyze offline • Deploy updated metadata • Decide and serve appropriate experience – Perturbation and dampening © 2009 eBay Inc.
  • 11. Best Practice 4: Remember Everything Fails • Build all systems to be tolerant of failure – Assume every operation will fail and every resource will be unavailable – Detect failure as rapidly as possible – Recover from failure as rapidly as possible – Do as much as possible during failure • Motivation – Availability © 2009 eBay Inc.
  • 12. Best Practice 4: Remember Everything Fails Pattern: Failure Detection – Servers log all requests • Log all application activity, database and service calls on multicast message bus • Over 2TB of log messages per day – Listeners automate failure detection and notification Pattern: Rollback – Absolutely no changes to the site which cannot be undone (!) – Every feature has on / off state driven by central configuration • Feature can be immediately turned off for operational or business reasons • Features can be deployed “wired-off” to unroll dependencies Pattern: Graceful Degradation – Application “marks down” an unavailable or distressed resource – Non-critical functionality is removed or ignored – Critical functionality is retried or deferred © 2009 eBay Inc.
  • 13. Best Practice 5: Embrace Inconsistency • Brewer’s CAP Theorem – Any shared-data system can have at most two of the following properties: • Consistency: All clients see the same data, even in the presence of updates • Availability: All clients will get a response, even in the presence of failures • Partition-tolerance: The system properties hold even when the network is partitioned – This trade-off is fundamental to all distributed systems © 2009 eBay Inc.
  • 14. Best Practice 5: Embrace Inconsistency Choose Appropriate Consistency Guarantees – To guarantee availability and partition-tolerance, we trade off immediate consistency – Most real-world systems (even financial systems!) do not require immediate consistency – Consistency is a spectrum – Prefer eventual consistency to immediate consistency Avoid Distributed Transactions – eBay does absolutely no distributed transactions – no two-phase commit – Minimize inconsistency through state machines and careful ordering of operations – Eventual consistency through asynchronous event or reconciliation batch © 2009 eBay Inc.
  • 15. Recap: Best Practices for Scaling 1. Partition Everything 2. Asynchrony Everywhere 3. Automate Everything 4. Remember Everything Fails 5. Embrace Inconsistency © 2009 eBay Inc.
  • 16. Questions? About the Presenter Randy Shoup has been the primary architect for eBay's search infrastructure since 2004. Prior to eBay, Randy was Chief Architect and Technical Fellow at Tumbleweed Communications, and has also held a variety of software development and architecture roles at Oracle and Informatica. rshoup@ebay.com © 2009 eBay Inc.