SlideShare une entreprise Scribd logo
1  sur  18
Large scale
     search
Patterns for dealing with large-scale
           search systems
overview
•How to provide a scalable platform for
both users and data
•Issues introduced by a scalable platform
•Patterns for dealing with the issues
Big data




As data volumes increase they can prove
 too large for any one server to manage
Big data: Partitioning




Data can be partitioned into suitably sized
“shards” and placed on different servers
Partitioning: divide and
        conquer
                     ?


                         ?
               ?
                             ?




Each user’s search queries all shards in parallel
and combines results to provide fast responses
Big Search Loads
                 ?       ?       ?
         ?   ?       ?       ?       ?   ?
                         ?




However, as user volumes increase, the loads
 on each shard server can become too great
Replication
                ?       ?       ?
        ?   ?       ?       ?       ?   ?
                        ?




To spread the load of many simultaneous
   users, indexes need to be replicated
Scaling Summary
Partitioning                       Replication
coping with data volumes   coping with user volumes (and providing
                              redundancy in the event of failure)
Issues


 So far so good - but a scalable system with
many servers raises the concerns of balancing
        Consistency and Availability...
Consistency vs
                           availability
Servers




          !
                                   Content Freshness



              As the number of required servers increases, there is an increased
              probability that a server will fail or lag when adding new content.
Consistency vs
                           availability
Servers




                                           earliest cross-server           latest available
                                             consistent content            content

                                                                   ????
          These potential inconsistencies across servers introduces a dilemma -
              search the latest available content or older, consistent content?
Consistency vs
                   availability
     Consistency                                                  Availability




           FULL         Shard          Managed      sticky user   Every man for
        Consistency   Consistency   InConsistency    sessions        himself




What follows is a number of architectural patterns, each of which will make a
trade-off between the consistency and availability of content being searched
Patterns
Consistency   Availability




                                              Full Consistency

             All servers are designed to coordinate together when applying batches of
 Description new content. If any one server fails to apply updates, all servers abandon
             this batch of updates.

                             •All users of the system see the same version of content i.e. the same
                             point in time.
        Pros


                             •Complex distributed transaction software is required to coordinate
                             updates.
       Cons
                             •Any failure on a server delays the visibility of new content on all
                             servers.
Patterns
Consistency   Availability




                                            shard consistency

             Within each “shard” replica servers strive to maintain identical copies of
 Description the same content. New content additions are coordinated within each
             shard with any failure of a replica server aborting additions to that shard.

                             •Update failures are isolated to impacting availability of new content on
                             a single shard.
        Pros
                             •All users see the same (potentially uneven) content.

                             •Complex distributed transaction software may be required to
                             coordinate updates.
       Cons
                             •Any failure delays the visibility of new content in that shard.
                             •Shards may be “uneven” in the points-in-time they represent
Patterns
Consistency   Availability




                                       managed inconsistency
             All servers apply updates independently, with an agreed tolerance for
             “drift” between the freshness of content held on servers. When this
 Description threshold is reached the servers with the newest content halt updates
             until the drift gap is closed (this may require removing a failing replica
             server from active service).
                             •New content is continually made available to users until pre-defined
        Pros                 tolerances for failures are exceeded
                             •Different users may see different results depending on which (almost)
                             replica the load balancer chooses to service their queries
       Cons                  •Individual users hitting the refresh button may also see different results
                             as a result of non-exact replica servers
                             •Shards may be “uneven” in the points-in-time they represent
Patterns
Consistency   Availability




                                          sticky user sessions
             All servers are allowed to update independently. The load balancer is
             configured to route a user’s searches to the same choice of replica server
 Description in each shard whenever possible to hide any temporary drift between
             replicas.
                             •New content is continually made available to users.
        Pros                 •Individual users should not experience a “step back in time” when
                             repeating the same query due to inconsistent replicas.


                             •Different users may see different results depending on which (almost)
       Cons                  replica the load balancer chooses to service the query.
                             •Shards may be “uneven” in the points-in-time they represent.
Patterns
Consistency   Availability




                                        every man for himself

 Description All servers are allowed to update independently.


        Pros                 •New content is continually made available to users


                             •Different users may see different results depending on which (almost)
                             replica the load balancer chooses to service the query.
       Cons
                             •Individual users hitting the refresh button may also see different results
                             as a result of non-exact replica servers
considerations when
     selecting a pattern
•Pick an acceptable user experience as a starting point
  •“I always expect to be acting on the latest available information”
  •“I need all results to represent the same point in time”
  •“I expect hitting the refresh button to take me forward in time, never back”
  •“I expect to always see the same content as my colleagues”
•Recognise not all user requirements are realisable so rank them by
importance.
•Pick a pattern that works best for the selected requirements
  •Consider mixing some patterns e.g. “Managed Inconsistency” with
  “Sticky user sessions” seems a good compromise between
  maintaining (perceived) consistency and content availability
  •Consider different strategies for different user groups e.g. VIP users
  will always see the guaranteed-latest content.

Contenu connexe

Tendances

The Next Generation of Microsoft Virtualization With Windows Server 2012
The Next Generation of Microsoft Virtualization With Windows Server 2012The Next Generation of Microsoft Virtualization With Windows Server 2012
The Next Generation of Microsoft Virtualization With Windows Server 2012
Lai Yoong Seng
 
Com day how to bring windows azure portal to your datacenter
Com day   how to bring windows azure portal to your datacenterCom day   how to bring windows azure portal to your datacenter
Com day how to bring windows azure portal to your datacenter
Christopher Keyaert
 

Tendances (6)

The Next Generation of Microsoft Virtualization With Windows Server 2012
The Next Generation of Microsoft Virtualization With Windows Server 2012The Next Generation of Microsoft Virtualization With Windows Server 2012
The Next Generation of Microsoft Virtualization With Windows Server 2012
 
Com day how to bring windows azure portal to your datacenter
Com day   how to bring windows azure portal to your datacenterCom day   how to bring windows azure portal to your datacenter
Com day how to bring windows azure portal to your datacenter
 
What’s New in vCloud Director 5.1?
What’s New in vCloud Director 5.1?What’s New in vCloud Director 5.1?
What’s New in vCloud Director 5.1?
 
Best practices for_scaling_java_applications_with_distributed_caching
Best practices for_scaling_java_applications_with_distributed_cachingBest practices for_scaling_java_applications_with_distributed_caching
Best practices for_scaling_java_applications_with_distributed_caching
 
Introduction to vm ware
Introduction to vm wareIntroduction to vm ware
Introduction to vm ware
 
Best Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWSBest Practices for Deploying Microsoft Workloads on AWS
Best Practices for Deploying Microsoft Workloads on AWS
 

Similaire à Patterns for large scale search

SQL 2012 AlwaysOn Availability Groups for SharePoint 2013 - SharePoint Connec...
SQL 2012 AlwaysOn Availability Groups for SharePoint 2013 - SharePoint Connec...SQL 2012 AlwaysOn Availability Groups for SharePoint 2013 - SharePoint Connec...
SQL 2012 AlwaysOn Availability Groups for SharePoint 2013 - SharePoint Connec...
Michael Noel
 

Similaire à Patterns for large scale search (20)

Scalable Web Architecture and Distributed Systems
Scalable Web Architecture and Distributed SystemsScalable Web Architecture and Distributed Systems
Scalable Web Architecture and Distributed Systems
 
System design fundamentals CAP.pdf
System design fundamentals CAP.pdfSystem design fundamentals CAP.pdf
System design fundamentals CAP.pdf
 
Service-oriented architecture
Service-oriented architectureService-oriented architecture
Service-oriented architecture
 
SVN
SVNSVN
SVN
 
Continuous Deployment Practices, with Production, Test and Development Enviro...
Continuous Deployment Practices, with Production, Test and Development Enviro...Continuous Deployment Practices, with Production, Test and Development Enviro...
Continuous Deployment Practices, with Production, Test and Development Enviro...
 
Select Stars: A DBA's Guide to Azure Cosmos DB (Chicago Suburban SQL Server U...
Select Stars: A DBA's Guide to Azure Cosmos DB (Chicago Suburban SQL Server U...Select Stars: A DBA's Guide to Azure Cosmos DB (Chicago Suburban SQL Server U...
Select Stars: A DBA's Guide to Azure Cosmos DB (Chicago Suburban SQL Server U...
 
SQL 2012 AlwaysOn Availability Groups for SharePoint 2013 - SharePoint Connec...
SQL 2012 AlwaysOn Availability Groups for SharePoint 2013 - SharePoint Connec...SQL 2012 AlwaysOn Availability Groups for SharePoint 2013 - SharePoint Connec...
SQL 2012 AlwaysOn Availability Groups for SharePoint 2013 - SharePoint Connec...
 
Select Stars: A SQL DBA's Introduction to Azure Cosmos DB (SQL Saturday Orego...
Select Stars: A SQL DBA's Introduction to Azure Cosmos DB (SQL Saturday Orego...Select Stars: A SQL DBA's Introduction to Azure Cosmos DB (SQL Saturday Orego...
Select Stars: A SQL DBA's Introduction to Azure Cosmos DB (SQL Saturday Orego...
 
HSBC and AWS Day - Microservices and Serverless
HSBC and AWS Day - Microservices and ServerlessHSBC and AWS Day - Microservices and Serverless
HSBC and AWS Day - Microservices and Serverless
 
Intro
IntroIntro
Intro
 
Multi Tenancy In The Cloud
Multi Tenancy In The CloudMulti Tenancy In The Cloud
Multi Tenancy In The Cloud
 
Couchbase b jmeetup
Couchbase b jmeetupCouchbase b jmeetup
Couchbase b jmeetup
 
Chapter Introductionn to distributed system .pptx
Chapter Introductionn to distributed system .pptxChapter Introductionn to distributed system .pptx
Chapter Introductionn to distributed system .pptx
 
UNIT II (1).pptx
UNIT II (1).pptxUNIT II (1).pptx
UNIT II (1).pptx
 
SDEC2011 Using Couchbase for social game scaling and speed
SDEC2011 Using Couchbase for social game scaling and speedSDEC2011 Using Couchbase for social game scaling and speed
SDEC2011 Using Couchbase for social game scaling and speed
 
Apache Kafka Introduction
Apache Kafka IntroductionApache Kafka Introduction
Apache Kafka Introduction
 
Architecture for the cloud deployment case study future
Architecture for the cloud deployment case study futureArchitecture for the cloud deployment case study future
Architecture for the cloud deployment case study future
 
Subversion and bug tracking
Subversion and bug trackingSubversion and bug tracking
Subversion and bug tracking
 
Jelastic Features 2.x
Jelastic Features 2.xJelastic Features 2.x
Jelastic Features 2.x
 
AWS Elasticity and Auto Scaling
AWS Elasticity and Auto ScalingAWS Elasticity and Auto Scaling
AWS Elasticity and Auto Scaling
 

Dernier

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Dernier (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
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...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 

Patterns for large scale search

  • 1. Large scale search Patterns for dealing with large-scale search systems
  • 2. overview •How to provide a scalable platform for both users and data •Issues introduced by a scalable platform •Patterns for dealing with the issues
  • 3. Big data As data volumes increase they can prove too large for any one server to manage
  • 4. Big data: Partitioning Data can be partitioned into suitably sized “shards” and placed on different servers
  • 5. Partitioning: divide and conquer ? ? ? ? Each user’s search queries all shards in parallel and combines results to provide fast responses
  • 6. Big Search Loads ? ? ? ? ? ? ? ? ? ? However, as user volumes increase, the loads on each shard server can become too great
  • 7. Replication ? ? ? ? ? ? ? ? ? ? To spread the load of many simultaneous users, indexes need to be replicated
  • 8. Scaling Summary Partitioning Replication coping with data volumes coping with user volumes (and providing redundancy in the event of failure)
  • 9. Issues So far so good - but a scalable system with many servers raises the concerns of balancing Consistency and Availability...
  • 10. Consistency vs availability Servers ! Content Freshness As the number of required servers increases, there is an increased probability that a server will fail or lag when adding new content.
  • 11. Consistency vs availability Servers earliest cross-server latest available consistent content content ???? These potential inconsistencies across servers introduces a dilemma - search the latest available content or older, consistent content?
  • 12. Consistency vs availability Consistency Availability FULL Shard Managed sticky user Every man for Consistency Consistency InConsistency sessions himself What follows is a number of architectural patterns, each of which will make a trade-off between the consistency and availability of content being searched
  • 13. Patterns Consistency Availability Full Consistency All servers are designed to coordinate together when applying batches of Description new content. If any one server fails to apply updates, all servers abandon this batch of updates. •All users of the system see the same version of content i.e. the same point in time. Pros •Complex distributed transaction software is required to coordinate updates. Cons •Any failure on a server delays the visibility of new content on all servers.
  • 14. Patterns Consistency Availability shard consistency Within each “shard” replica servers strive to maintain identical copies of Description the same content. New content additions are coordinated within each shard with any failure of a replica server aborting additions to that shard. •Update failures are isolated to impacting availability of new content on a single shard. Pros •All users see the same (potentially uneven) content. •Complex distributed transaction software may be required to coordinate updates. Cons •Any failure delays the visibility of new content in that shard. •Shards may be “uneven” in the points-in-time they represent
  • 15. Patterns Consistency Availability managed inconsistency All servers apply updates independently, with an agreed tolerance for “drift” between the freshness of content held on servers. When this Description threshold is reached the servers with the newest content halt updates until the drift gap is closed (this may require removing a failing replica server from active service). •New content is continually made available to users until pre-defined Pros tolerances for failures are exceeded •Different users may see different results depending on which (almost) replica the load balancer chooses to service their queries Cons •Individual users hitting the refresh button may also see different results as a result of non-exact replica servers •Shards may be “uneven” in the points-in-time they represent
  • 16. Patterns Consistency Availability sticky user sessions All servers are allowed to update independently. The load balancer is configured to route a user’s searches to the same choice of replica server Description in each shard whenever possible to hide any temporary drift between replicas. •New content is continually made available to users. Pros •Individual users should not experience a “step back in time” when repeating the same query due to inconsistent replicas. •Different users may see different results depending on which (almost) Cons replica the load balancer chooses to service the query. •Shards may be “uneven” in the points-in-time they represent.
  • 17. Patterns Consistency Availability every man for himself Description All servers are allowed to update independently. Pros •New content is continually made available to users •Different users may see different results depending on which (almost) replica the load balancer chooses to service the query. Cons •Individual users hitting the refresh button may also see different results as a result of non-exact replica servers
  • 18. considerations when selecting a pattern •Pick an acceptable user experience as a starting point •“I always expect to be acting on the latest available information” •“I need all results to represent the same point in time” •“I expect hitting the refresh button to take me forward in time, never back” •“I expect to always see the same content as my colleagues” •Recognise not all user requirements are realisable so rank them by importance. •Pick a pattern that works best for the selected requirements •Consider mixing some patterns e.g. “Managed Inconsistency” with “Sticky user sessions” seems a good compromise between maintaining (perceived) consistency and content availability •Consider different strategies for different user groups e.g. VIP users will always see the guaranteed-latest content.