SlideShare une entreprise Scribd logo
1  sur  27
Solr Compute Cloud – An Elastic 
Solr Infrastructure 
Nitin Sharma 
- Member of technical staff, BloomReach 
- nitin.sharma@bloomreach.com
Abstract 
Scaling search platforms is an extremely hard problem 
• Serving hundreds of millions of documents 
• Low latency 
• High throughput workloads 
• Optimized cost. 
At BloomReach, we have implemented SC2, an elastic Solr infrastructure for big data applications 
that: 
• Supports heterogeneous workloads while hosted in the cloud. 
• Dynamically grows/shrinks search servers 
• Application and Pipeline level isolation, NRT search and indexing. 
• Offers latency guarantees and application-specific performance tuning. 
• Provides high-availability features like cluster replacement, cross-data center support, disaster 
recovery etc.
About Us 
BloomReach 
BloomReach has developed a personalized discovery platform that features applications that analyze 
big data to makes our customers’ digital content more discoverable, relevant and profitable. 
Myself 
I work on search platform scaling for BloomReach’s big data. My relevant experience and background 
includes scaling real-time services for latency sensitive applications and building performance and search-quality 
metrics infrastructure for personalization platforms.
The 
BloomReach 
Personalized 
Discovery 
Platform
BloomReach’s Applications 
Organic 
Search 
Content understanding 
What it does 
Content optimization, 
management and measurement 
Benefit 
Enhanced discoverability and 
customer acquisition in organic search 
What it does 
Personalized onsite search and 
navigation across devices 
Benefit 
Relevant and consistent onsite 
experiences for new and known users 
What it does 
Merchandising tool that understa 
nds products and identifies oppo 
rtunities 
Benefit 
Prioritize and optimize 
online merchandising 
SNAP 
Compass
Agenda 
• BloomReach search use cases and architecture 
• Old architecture and issues 
• Scaling challenges 
• Elastic SolrCloud architecture and benefits 
• Lessons learned
BloomReach Search Use Cases 
1. Front-end (serving) queries – Uptime and Latency sensitive 
2. Batch search pipelines – Throughput sensitive 
3. Time bound indexing requirements – Customer Specific 
4. Time bound Solr config updates
BloomReach Search Architecture 
Zookeeper Ensemble Map Reduce 
Solr 
Cluster 
Pipelines (Reads) 
Indexing Pipelines 
Pipeline 1 
Pipeline 2 
Pipeline n 
Indexing 1 
Indexing 2 
Indexing n 
Heavy Load 
Moderate Load 
Light Load 
Legend 
Public API 
Search Traffic 
Search Traffic
Throughput Issues… 
Zookeeper Ensemble 
Solr 
Cluster 
Pipeline 1 
Pipeline 2 
Pipeline n 
Indexing 1 
Indexing 2 
Indexing n 
Public API 
Search Traffic 
● Heterogeneous read 
workload 
● Same collection - different 
pipelines, different query 
patterns, different schedule 
● Cache tuning is virtually 
impossible 
● Larger pipeline starving the 
small ones 
● Machine utilization 
determines throughput and 
stability of a pipeline at any 
point 
● No isolation among jobs
Stability and Uptime Issues… 
Zookeeper Ensemble 
Solr 
Cluster 
Pipeline 1 
Pipeline 2 
Pipeline n 
Indexing 1 
Indexing 2 
Indexing n 
Public API 
Search Traffic 
● Bad clients – bring down 
the cluster/degrade 
performance 
● Bad queries (with heavy 
load) – render nodes 
unresponsive 
● Garbage collection issues 
● ZK stability issues (as we 
scale collections) 
● CPU /Load Issues 
● Higher number of 
concurrent pipelines, 
higher number of issues
Indexing Issues… 
Zookeeper Ensemble 
Solr 
Cluster 
Pipeline 1 
Pipeline 2 
Pipeline n 
Indexing 1 
Indexing 2 
Indexing n 
Public API 
Search Traffic 
● Commit frequencies vary 
with indexer types 
● Indexer run during another 
pipeline – performance 
● Indexer client leaks 
● Too many stored fields 
● Non-batch updates
Rethinking… 
• Shared cluster for pipelines does not scale. 
• Guaranteeing an uptime of 99.99+ - non trivial 
• Every job runs great in isolation. When you put them together, they fail. 
• Running index-heavy load and read-heavy load - cluster performance issues. 
• Any direct access to production cluster – cluster stability (client leaks, bad queries etc.). 
What if every pipeline had its own cluster?
Solr Compute Cloud (SC2) 
• Elastic Infrastructure – Provision Solr Clusters on demand, on-the-fly. 
• Create, Use, Terminate Model - Create a temporary cluster with necessary data, use it and throw it away. 
• Technologies behind SC2 (built in House) 
Cluster Management API - Dynamic cluster provisioning and resource allocation. 
Solr HAFT – High availability and data management library for SolrCloud. 
• Isolation - Pipelines get their own cluster. One cannot disrupt another. 
• Dynamic Scaling – Every pipeline can state its own replication requirements. 
• Production Safeguard - No direct access. Safeguards from bad clients/access patterns. 
• Cost Saving – Provision for the average; withstand peak with elastic growth.
Solr Compute Cloud 
Zookeeper Ensemble 
Solr 
Cluster 
Request: {Collection: A, Replica: 6} 
Pipeline 1 
Solr 
Compute 
Cloud 
API 
Solr Cluster 
Collection A 
Replicas: 6 
1. Read pipeline requests 
collection and desired 
replicas from SC2 API. 
2. SC2 API provisions 
cluster dynamically with 
needed setup (and 
streams Solr data). 
3. SC2 calls HAFT service to 
replicate data from 
production to provisioned 
cluster. 
4. Pipeline uses this cluster 
to run job. 
1 
4 
2 
3 
Solr 
HAFT 
Service 
3 
Read 
Replicate
Solr Compute Cloud… 
Zookeeper Ensemble 
Solr 
Cluster 
Pipeline 1 
Solr 
Compute 
Cloud 
API 
Solr Cluster 
Collection A 
Replicas: 6 
1. Pipeline finishes running 
the job. 
2. Pipeline calls SC2 API to 
terminate the cluster. 
3. SC2 terminates the 
cluster. 
Terminate: {Cluster} 
2 
3 
Solr 
HAFT 
Service 
1
Solr Compute Cloud – Read Pipeline View 
Zookeeper Ensemble 
Pipeline 1 
Solr 
Compute 
Cloud 
API 
Solr Cluster 
Collection A 
Replicas: 6 
Request: {Collection: A, Replica: 6} 
Pipeline 2 
Solr Cluster 
Collection B 
Replicas: 2 
Request: {Collection: B, Replica: 2} 
Pipeline n 
Solr Cluster 
Collection C 
Replicas: 1 
Request: {Collection: C, Replica: 1} 
Solr 
HAFT 
Service 
Production 
Solr Cluster
Solr Compute Cloud – Indexing 
Zookeeper Ensemble 
Production 
Solr Cluster 
Request: {Collection: A, Replica: 2} 
Indexing 
Solr 
Compute 
Cloud 
API 
Solr Cluster 
Collection A 
Replicas: 6 
1. Read pipeline requests 
collection and desired 
replicas from SC2 API. 
2. SC2 API provisions 
cluster dynamically with 
needed setup (and 
streams Solr data). 
1. Indexer uses this cluster 
to index the data. 
2. Indexer calls HAFT 
service to replicate the 
index from dynamic 
cluster to production. 
3. HAFT service reads data 
from dynamic cluster and 
replicates to production 
Solr. 
1 
3 
2 
Replicate 
Solr HAFT Service 
4 
5 
Read
Solr Compute Cloud – Global View 
Zookeeper Ensemble 
Solr 
Compute 
Cloud 
API 
Solr HAFT Service 
Production 
Solr Cluster 
Indexing Pipelines 1 
Elastic Clusters 
Indexing Pipelines n 
Read Pipelines 1 
Read Pipelines n 
Provision: {Cluster} 
Terminate: {Cluster} 
Replicate Index 
Replicate Index 
Run Job
Solr Compute Cloud API 
1. API to provision clusters on demand. 
2. Dynamic cluster and resource allocation (includes cost optimization) 
3. Track request state, cluster performance and cost. 
4. Terminate long-running, runaway clusters.
Solr HAFT Service 
1. High availability and fault tolerance 
2. Home-grown technology 
3. Open Source -  (Work in progress) 
4. Features 
• One push disaster recovery 
• High availability operations 
• Replace node 
• Add replicas 
• Repair collection 
• Collection versioning 
• Cluster backup operations 
• Dynamic replica creation 
• Cluster clone 
• Cluster swap 
• Cluster state reconstruction
Solr HAFT Service – Functional View 
Black Box Recording 
Index Management Actions 
Custom Commit Node Replacement 
Collection Versioning 
Solr HAFT Service 
Clone Collections 
Clone Alias 
Node Repair 
Clone Cluster 
Lucene Segment 
Optimize 
High Availability Actions 
Cluster Backup Operations 
Solr Metadata 
Zookeeper 
Metadata 
Dynamic Replica 
Creation 
Cluster Clone 
Cluster Swap 
Cluster State 
Reconstruction 
Verification Monitoring
Disaster Recovery in New Architecture 
Zookeeper Ensemble 
Old 
Production 
Solr 
Cluster 
Zookeeper Ensemble 
New 
Solr 
Cluster 
Push 
Button 
Recovery 
Solr HAFT Service 
Brave Soul on Pager Duty 
1 
2 
3 
DNS 
1. Guy on Pager clicks the 
recovery button 
2. Solr HAFT Service 
triggers 
Cluster Setup 
State Reconstruction 
Cluster Clone 
Cluster Swap 
3. Production DNS – New 
Cluster
SC2 vs Non-SC2 (Stability Features) 
Property Non-SC2 SC2 
Linear Scalability for Heterogeneous 
Workload 
Pipeline Level Isolation 
Dynamic Collection Scaling 
Prevention from Bad Clients 
Pipeline Specific Performance 
No Direct Access to Production Cluster 
Can Sleep at night? 
SC2 vs Non-SC2 (Availability Features) 
Property Non-SC2 SC2 
Cross Data-Center Support 
Cluster Cloning 
Collection Versioning 
One-Push Disaster Recovery 
Repair API for Nodes/Collections 
Node Replacement
Lessons Learned 
1. Solr is a search platform. Do not use it as a database (for scans and lookups). 
Evaluate your stored fields. 
2. Understand access patterns, QPS and queries in detail. Be careful when tuning 
caches. 
3. Have access control for large-scale jobs that directly talk to your cluster. (Internal 
DDOS attacks are hard to track.) 
4. Instrument every piece of infrastructure and collect metrics. 
5. Build automated disaster recovery (You will need it. )
Questions? 
Thank You! 
Nitin Sharma 
nitin.sharma@bloomreach.com 
https://www.linkedin.com/in/knitinsharma

Contenu connexe

Tendances

-Kerberos and Health Checks and Bare Metal, Oh My! Updates to OpenStack Sahar...
-Kerberos and Health Checks and Bare Metal, Oh My! Updates to OpenStack Sahar...-Kerberos and Health Checks and Bare Metal, Oh My! Updates to OpenStack Sahar...
-Kerberos and Health Checks and Bare Metal, Oh My! Updates to OpenStack Sahar...
Гриднев Виталий
 
[EUC2016] DockerCap: a software-level power capping orchestrator for Docker c...
[EUC2016] DockerCap: a software-level power capping orchestrator for Docker c...[EUC2016] DockerCap: a software-level power capping orchestrator for Docker c...
[EUC2016] DockerCap: a software-level power capping orchestrator for Docker c...
Matteo Ferroni
 

Tendances (20)

Spark on Yarn
Spark on YarnSpark on Yarn
Spark on Yarn
 
Senlin deep dive 2016
Senlin deep dive 2016Senlin deep dive 2016
Senlin deep dive 2016
 
PaaSTA: Autoscaling at Yelp
PaaSTA: Autoscaling at YelpPaaSTA: Autoscaling at Yelp
PaaSTA: Autoscaling at Yelp
 
-Kerberos and Health Checks and Bare Metal, Oh My! Updates to OpenStack Sahar...
-Kerberos and Health Checks and Bare Metal, Oh My! Updates to OpenStack Sahar...-Kerberos and Health Checks and Bare Metal, Oh My! Updates to OpenStack Sahar...
-Kerberos and Health Checks and Bare Metal, Oh My! Updates to OpenStack Sahar...
 
YARN: a resource manager for analytic platform
YARN: a resource manager for analytic platformYARN: a resource manager for analytic platform
YARN: a resource manager for analytic platform
 
Scale-Out Resource Management at Microsoft using Apache YARN
Scale-Out Resource Management at Microsoft using Apache YARNScale-Out Resource Management at Microsoft using Apache YARN
Scale-Out Resource Management at Microsoft using Apache YARN
 
Spark Working Environment in Windows OS
Spark Working Environment in Windows OSSpark Working Environment in Windows OS
Spark Working Environment in Windows OS
 
Declarative benchmarking of cassandra and it's data models
Declarative benchmarking of cassandra and it's data modelsDeclarative benchmarking of cassandra and it's data models
Declarative benchmarking of cassandra and it's data models
 
Patterns of-streaming-applications-qcon-2018-monal-daxini
Patterns of-streaming-applications-qcon-2018-monal-daxiniPatterns of-streaming-applications-qcon-2018-monal-daxini
Patterns of-streaming-applications-qcon-2018-monal-daxini
 
Senlin deep dive 2015 05-20
Senlin deep dive 2015 05-20Senlin deep dive 2015 05-20
Senlin deep dive 2015 05-20
 
YARN and the Docker container runtime
YARN and the Docker container runtimeYARN and the Docker container runtime
YARN and the Docker container runtime
 
Akka at Enterprise Scale: Performance Tuning Distributed Applications
Akka at Enterprise Scale: Performance Tuning Distributed ApplicationsAkka at Enterprise Scale: Performance Tuning Distributed Applications
Akka at Enterprise Scale: Performance Tuning Distributed Applications
 
Managing Container Clusters in OpenStack Native Way
Managing Container Clusters in OpenStack Native WayManaging Container Clusters in OpenStack Native Way
Managing Container Clusters in OpenStack Native Way
 
Apache Kafka Women Who Code Meetup
Apache Kafka Women Who Code MeetupApache Kafka Women Who Code Meetup
Apache Kafka Women Who Code Meetup
 
Hadoop YARN overview
Hadoop YARN overviewHadoop YARN overview
Hadoop YARN overview
 
Spark day 2017 - Spark on Kubernetes
Spark day 2017 - Spark on KubernetesSpark day 2017 - Spark on Kubernetes
Spark day 2017 - Spark on Kubernetes
 
Reactor, Reactive streams and MicroServices
Reactor, Reactive streams and MicroServicesReactor, Reactive streams and MicroServices
Reactor, Reactive streams and MicroServices
 
[EUC2016] DockerCap: a software-level power capping orchestrator for Docker c...
[EUC2016] DockerCap: a software-level power capping orchestrator for Docker c...[EUC2016] DockerCap: a software-level power capping orchestrator for Docker c...
[EUC2016] DockerCap: a software-level power capping orchestrator for Docker c...
 
Senlin Clustering Service Deep Dive
Senlin Clustering Service Deep DiveSenlin Clustering Service Deep Dive
Senlin Clustering Service Deep Dive
 
Hadoop World 2011: Hadoop and Performance - Todd Lipcon & Yanpei Chen, Cloudera
Hadoop World 2011: Hadoop and Performance - Todd Lipcon & Yanpei Chen, ClouderaHadoop World 2011: Hadoop and Performance - Todd Lipcon & Yanpei Chen, Cloudera
Hadoop World 2011: Hadoop and Performance - Todd Lipcon & Yanpei Chen, Cloudera
 

En vedette

Facilitating product discovery in e-commerce inventory, The Fifth elephant, 2016
Facilitating product discovery in e-commerce inventory, The Fifth elephant, 2016Facilitating product discovery in e-commerce inventory, The Fifth elephant, 2016
Facilitating product discovery in e-commerce inventory, The Fifth elephant, 2016
Ekta Grover
 
огонь враг
огонь врагогонь враг
огонь враг
Chekusova
 
наши проекты
наши проектынаши проекты
наши проекты
Chekusova
 

En vedette (16)

Big Data Marketing - 5th Click Conference
Big Data Marketing - 5th Click ConferenceBig Data Marketing - 5th Click Conference
Big Data Marketing - 5th Click Conference
 
Solr Payloads for Ranking Data
Solr Payloads for Ranking Data Solr Payloads for Ranking Data
Solr Payloads for Ranking Data
 
Facilitating product discovery in e-commerce inventory, The Fifth elephant, 2016
Facilitating product discovery in e-commerce inventory, The Fifth elephant, 2016Facilitating product discovery in e-commerce inventory, The Fifth elephant, 2016
Facilitating product discovery in e-commerce inventory, The Fifth elephant, 2016
 
огонь враг
огонь врагогонь враг
огонь враг
 
Nonverbal communication 2.1
Nonverbal communication 2.1Nonverbal communication 2.1
Nonverbal communication 2.1
 
Pai sma smk 10
Pai sma smk 10 Pai sma smk 10
Pai sma smk 10
 
егэ задание №6
егэ задание №6егэ задание №6
егэ задание №6
 
SESZ Itsasadarra txostena
SESZ Itsasadarra txostena SESZ Itsasadarra txostena
SESZ Itsasadarra txostena
 
Incentives and Human Behavior. Political economic digest series - 2
Incentives and Human Behavior. Political economic digest series - 2Incentives and Human Behavior. Political economic digest series - 2
Incentives and Human Behavior. Political economic digest series - 2
 
UI Asset Management by Stephen Verhalleman
UI Asset Management by Stephen VerhallemanUI Asset Management by Stephen Verhalleman
UI Asset Management by Stephen Verhalleman
 
Translate kiki
Translate kikiTranslate kiki
Translate kiki
 
Federalism as an ideal political order and an objective for constitutional re...
Federalism as an ideal political order and an objective for constitutional re...Federalism as an ideal political order and an objective for constitutional re...
Federalism as an ideal political order and an objective for constitutional re...
 
наши проекты
наши проектынаши проекты
наши проекты
 
Limited Government. Political economic digest series - 8
Limited Government. Political economic digest series - 8Limited Government. Political economic digest series - 8
Limited Government. Political economic digest series - 8
 
Surviving the trainwreck andrew hackman full_3
Surviving the trainwreck andrew hackman full_3Surviving the trainwreck andrew hackman full_3
Surviving the trainwreck andrew hackman full_3
 
Choose Your Battles by David Morgan
Choose Your Battles by David MorganChoose Your Battles by David Morgan
Choose Your Battles by David Morgan
 

Similaire à Solr Lucene Conference 2014 - Nitin Presentation

Automated Cluster Management and Recovery for Large Scale Multi-Tenant Sea...
  Automated Cluster Management and Recovery  for Large Scale Multi-Tenant Sea...  Automated Cluster Management and Recovery  for Large Scale Multi-Tenant Sea...
Automated Cluster Management and Recovery for Large Scale Multi-Tenant Sea...
Lucidworks
 
Intro to Solr Cloud, Presented by Tim Potter at SolrExchage DC
Intro to Solr Cloud, Presented by Tim Potter at SolrExchage DCIntro to Solr Cloud, Presented by Tim Potter at SolrExchage DC
Intro to Solr Cloud, Presented by Tim Potter at SolrExchage DC
Lucidworks (Archived)
 
Understand oracle real application cluster
Understand oracle real application clusterUnderstand oracle real application cluster
Understand oracle real application cluster
Satishbabu Gunukula
 
Rackspace: Email's Solution for Indexing 50K Documents per Second: Presented ...
Rackspace: Email's Solution for Indexing 50K Documents per Second: Presented ...Rackspace: Email's Solution for Indexing 50K Documents per Second: Presented ...
Rackspace: Email's Solution for Indexing 50K Documents per Second: Presented ...
Lucidworks
 

Similaire à Solr Lucene Conference 2014 - Nitin Presentation (20)

Solr Lucene Revolution 2014 - Solr Compute Cloud - Nitin
Solr Lucene Revolution 2014 - Solr Compute Cloud - NitinSolr Lucene Revolution 2014 - Solr Compute Cloud - Nitin
Solr Lucene Revolution 2014 - Solr Compute Cloud - Nitin
 
Bloomreach - BloomStore Compute Cloud Infrastructure
Bloomreach - BloomStore Compute Cloud Infrastructure Bloomreach - BloomStore Compute Cloud Infrastructure
Bloomreach - BloomStore Compute Cloud Infrastructure
 
Automated Cluster Management and Recovery for Large Scale Multi-Tenant Sea...
  Automated Cluster Management and Recovery  for Large Scale Multi-Tenant Sea...  Automated Cluster Management and Recovery  for Large Scale Multi-Tenant Sea...
Automated Cluster Management and Recovery for Large Scale Multi-Tenant Sea...
 
Intro to Solr Cloud, Presented by Tim Potter at SolrExchage DC
Intro to Solr Cloud, Presented by Tim Potter at SolrExchage DCIntro to Solr Cloud, Presented by Tim Potter at SolrExchage DC
Intro to Solr Cloud, Presented by Tim Potter at SolrExchage DC
 
Solr Exchange: Introduction to SolrCloud
Solr Exchange: Introduction to SolrCloudSolr Exchange: Introduction to SolrCloud
Solr Exchange: Introduction to SolrCloud
 
SFBay Area Solr Meetup - June 18th: Benchmarking Solr Performance
SFBay Area Solr Meetup - June 18th: Benchmarking Solr PerformanceSFBay Area Solr Meetup - June 18th: Benchmarking Solr Performance
SFBay Area Solr Meetup - June 18th: Benchmarking Solr Performance
 
Benchmarking Solr Performance
Benchmarking Solr PerformanceBenchmarking Solr Performance
Benchmarking Solr Performance
 
Scaling SolrCloud to a Large Number of Collections: Presented by Shalin Shekh...
Scaling SolrCloud to a Large Number of Collections: Presented by Shalin Shekh...Scaling SolrCloud to a Large Number of Collections: Presented by Shalin Shekh...
Scaling SolrCloud to a Large Number of Collections: Presented by Shalin Shekh...
 
Benchmarking Solr Performance at Scale
Benchmarking Solr Performance at ScaleBenchmarking Solr Performance at Scale
Benchmarking Solr Performance at Scale
 
Ingestion and Dimensions Compute and Enrich using Apache Apex
Ingestion and Dimensions Compute and Enrich using Apache ApexIngestion and Dimensions Compute and Enrich using Apache Apex
Ingestion and Dimensions Compute and Enrich using Apache Apex
 
Streaming in Practice - Putting Apache Kafka in Production
Streaming in Practice - Putting Apache Kafka in ProductionStreaming in Practice - Putting Apache Kafka in Production
Streaming in Practice - Putting Apache Kafka in Production
 
Scaling SolrCloud to a Large Number of Collections - Fifth Elephant 2014
Scaling SolrCloud to a Large Number of Collections - Fifth Elephant 2014Scaling SolrCloud to a Large Number of Collections - Fifth Elephant 2014
Scaling SolrCloud to a Large Number of Collections - Fifth Elephant 2014
 
Introduction to SolrCloud
Introduction to SolrCloudIntroduction to SolrCloud
Introduction to SolrCloud
 
Understand oracle real application cluster
Understand oracle real application clusterUnderstand oracle real application cluster
Understand oracle real application cluster
 
Apache Pulsar Seattle - Meetup
Apache Pulsar Seattle - MeetupApache Pulsar Seattle - Meetup
Apache Pulsar Seattle - Meetup
 
Rackspace: Email's Solution for Indexing 50K Documents per Second: Presented ...
Rackspace: Email's Solution for Indexing 50K Documents per Second: Presented ...Rackspace: Email's Solution for Indexing 50K Documents per Second: Presented ...
Rackspace: Email's Solution for Indexing 50K Documents per Second: Presented ...
 
Building a near real time search engine & analytics for logs using solr
Building a near real time search engine & analytics for logs using solrBuilding a near real time search engine & analytics for logs using solr
Building a near real time search engine & analytics for logs using solr
 
AWS re:Invent presentation: Unmeltable Infrastructure at Scale by Loggly
AWS re:Invent presentation: Unmeltable Infrastructure at Scale by Loggly AWS re:Invent presentation: Unmeltable Infrastructure at Scale by Loggly
AWS re:Invent presentation: Unmeltable Infrastructure at Scale by Loggly
 
Deploying and managing Solr at scale
Deploying and managing Solr at scaleDeploying and managing Solr at scale
Deploying and managing Solr at scale
 
Streaming Analytics with Spark, Kafka, Cassandra and Akka
Streaming Analytics with Spark, Kafka, Cassandra and AkkaStreaming Analytics with Spark, Kafka, Cassandra and Akka
Streaming Analytics with Spark, Kafka, Cassandra and Akka
 

Dernier

FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Dr.Costas Sachpazis
 

Dernier (20)

FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Vivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design SpainVivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design Spain
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 

Solr Lucene Conference 2014 - Nitin Presentation

  • 1.
  • 2. Solr Compute Cloud – An Elastic Solr Infrastructure Nitin Sharma - Member of technical staff, BloomReach - nitin.sharma@bloomreach.com
  • 3. Abstract Scaling search platforms is an extremely hard problem • Serving hundreds of millions of documents • Low latency • High throughput workloads • Optimized cost. At BloomReach, we have implemented SC2, an elastic Solr infrastructure for big data applications that: • Supports heterogeneous workloads while hosted in the cloud. • Dynamically grows/shrinks search servers • Application and Pipeline level isolation, NRT search and indexing. • Offers latency guarantees and application-specific performance tuning. • Provides high-availability features like cluster replacement, cross-data center support, disaster recovery etc.
  • 4. About Us BloomReach BloomReach has developed a personalized discovery platform that features applications that analyze big data to makes our customers’ digital content more discoverable, relevant and profitable. Myself I work on search platform scaling for BloomReach’s big data. My relevant experience and background includes scaling real-time services for latency sensitive applications and building performance and search-quality metrics infrastructure for personalization platforms.
  • 5. The BloomReach Personalized Discovery Platform
  • 6. BloomReach’s Applications Organic Search Content understanding What it does Content optimization, management and measurement Benefit Enhanced discoverability and customer acquisition in organic search What it does Personalized onsite search and navigation across devices Benefit Relevant and consistent onsite experiences for new and known users What it does Merchandising tool that understa nds products and identifies oppo rtunities Benefit Prioritize and optimize online merchandising SNAP Compass
  • 7. Agenda • BloomReach search use cases and architecture • Old architecture and issues • Scaling challenges • Elastic SolrCloud architecture and benefits • Lessons learned
  • 8. BloomReach Search Use Cases 1. Front-end (serving) queries – Uptime and Latency sensitive 2. Batch search pipelines – Throughput sensitive 3. Time bound indexing requirements – Customer Specific 4. Time bound Solr config updates
  • 9. BloomReach Search Architecture Zookeeper Ensemble Map Reduce Solr Cluster Pipelines (Reads) Indexing Pipelines Pipeline 1 Pipeline 2 Pipeline n Indexing 1 Indexing 2 Indexing n Heavy Load Moderate Load Light Load Legend Public API Search Traffic Search Traffic
  • 10. Throughput Issues… Zookeeper Ensemble Solr Cluster Pipeline 1 Pipeline 2 Pipeline n Indexing 1 Indexing 2 Indexing n Public API Search Traffic ● Heterogeneous read workload ● Same collection - different pipelines, different query patterns, different schedule ● Cache tuning is virtually impossible ● Larger pipeline starving the small ones ● Machine utilization determines throughput and stability of a pipeline at any point ● No isolation among jobs
  • 11. Stability and Uptime Issues… Zookeeper Ensemble Solr Cluster Pipeline 1 Pipeline 2 Pipeline n Indexing 1 Indexing 2 Indexing n Public API Search Traffic ● Bad clients – bring down the cluster/degrade performance ● Bad queries (with heavy load) – render nodes unresponsive ● Garbage collection issues ● ZK stability issues (as we scale collections) ● CPU /Load Issues ● Higher number of concurrent pipelines, higher number of issues
  • 12. Indexing Issues… Zookeeper Ensemble Solr Cluster Pipeline 1 Pipeline 2 Pipeline n Indexing 1 Indexing 2 Indexing n Public API Search Traffic ● Commit frequencies vary with indexer types ● Indexer run during another pipeline – performance ● Indexer client leaks ● Too many stored fields ● Non-batch updates
  • 13. Rethinking… • Shared cluster for pipelines does not scale. • Guaranteeing an uptime of 99.99+ - non trivial • Every job runs great in isolation. When you put them together, they fail. • Running index-heavy load and read-heavy load - cluster performance issues. • Any direct access to production cluster – cluster stability (client leaks, bad queries etc.). What if every pipeline had its own cluster?
  • 14. Solr Compute Cloud (SC2) • Elastic Infrastructure – Provision Solr Clusters on demand, on-the-fly. • Create, Use, Terminate Model - Create a temporary cluster with necessary data, use it and throw it away. • Technologies behind SC2 (built in House) Cluster Management API - Dynamic cluster provisioning and resource allocation. Solr HAFT – High availability and data management library for SolrCloud. • Isolation - Pipelines get their own cluster. One cannot disrupt another. • Dynamic Scaling – Every pipeline can state its own replication requirements. • Production Safeguard - No direct access. Safeguards from bad clients/access patterns. • Cost Saving – Provision for the average; withstand peak with elastic growth.
  • 15. Solr Compute Cloud Zookeeper Ensemble Solr Cluster Request: {Collection: A, Replica: 6} Pipeline 1 Solr Compute Cloud API Solr Cluster Collection A Replicas: 6 1. Read pipeline requests collection and desired replicas from SC2 API. 2. SC2 API provisions cluster dynamically with needed setup (and streams Solr data). 3. SC2 calls HAFT service to replicate data from production to provisioned cluster. 4. Pipeline uses this cluster to run job. 1 4 2 3 Solr HAFT Service 3 Read Replicate
  • 16. Solr Compute Cloud… Zookeeper Ensemble Solr Cluster Pipeline 1 Solr Compute Cloud API Solr Cluster Collection A Replicas: 6 1. Pipeline finishes running the job. 2. Pipeline calls SC2 API to terminate the cluster. 3. SC2 terminates the cluster. Terminate: {Cluster} 2 3 Solr HAFT Service 1
  • 17. Solr Compute Cloud – Read Pipeline View Zookeeper Ensemble Pipeline 1 Solr Compute Cloud API Solr Cluster Collection A Replicas: 6 Request: {Collection: A, Replica: 6} Pipeline 2 Solr Cluster Collection B Replicas: 2 Request: {Collection: B, Replica: 2} Pipeline n Solr Cluster Collection C Replicas: 1 Request: {Collection: C, Replica: 1} Solr HAFT Service Production Solr Cluster
  • 18. Solr Compute Cloud – Indexing Zookeeper Ensemble Production Solr Cluster Request: {Collection: A, Replica: 2} Indexing Solr Compute Cloud API Solr Cluster Collection A Replicas: 6 1. Read pipeline requests collection and desired replicas from SC2 API. 2. SC2 API provisions cluster dynamically with needed setup (and streams Solr data). 1. Indexer uses this cluster to index the data. 2. Indexer calls HAFT service to replicate the index from dynamic cluster to production. 3. HAFT service reads data from dynamic cluster and replicates to production Solr. 1 3 2 Replicate Solr HAFT Service 4 5 Read
  • 19. Solr Compute Cloud – Global View Zookeeper Ensemble Solr Compute Cloud API Solr HAFT Service Production Solr Cluster Indexing Pipelines 1 Elastic Clusters Indexing Pipelines n Read Pipelines 1 Read Pipelines n Provision: {Cluster} Terminate: {Cluster} Replicate Index Replicate Index Run Job
  • 20. Solr Compute Cloud API 1. API to provision clusters on demand. 2. Dynamic cluster and resource allocation (includes cost optimization) 3. Track request state, cluster performance and cost. 4. Terminate long-running, runaway clusters.
  • 21. Solr HAFT Service 1. High availability and fault tolerance 2. Home-grown technology 3. Open Source -  (Work in progress) 4. Features • One push disaster recovery • High availability operations • Replace node • Add replicas • Repair collection • Collection versioning • Cluster backup operations • Dynamic replica creation • Cluster clone • Cluster swap • Cluster state reconstruction
  • 22. Solr HAFT Service – Functional View Black Box Recording Index Management Actions Custom Commit Node Replacement Collection Versioning Solr HAFT Service Clone Collections Clone Alias Node Repair Clone Cluster Lucene Segment Optimize High Availability Actions Cluster Backup Operations Solr Metadata Zookeeper Metadata Dynamic Replica Creation Cluster Clone Cluster Swap Cluster State Reconstruction Verification Monitoring
  • 23. Disaster Recovery in New Architecture Zookeeper Ensemble Old Production Solr Cluster Zookeeper Ensemble New Solr Cluster Push Button Recovery Solr HAFT Service Brave Soul on Pager Duty 1 2 3 DNS 1. Guy on Pager clicks the recovery button 2. Solr HAFT Service triggers Cluster Setup State Reconstruction Cluster Clone Cluster Swap 3. Production DNS – New Cluster
  • 24. SC2 vs Non-SC2 (Stability Features) Property Non-SC2 SC2 Linear Scalability for Heterogeneous Workload Pipeline Level Isolation Dynamic Collection Scaling Prevention from Bad Clients Pipeline Specific Performance No Direct Access to Production Cluster Can Sleep at night? 
  • 25. SC2 vs Non-SC2 (Availability Features) Property Non-SC2 SC2 Cross Data-Center Support Cluster Cloning Collection Versioning One-Push Disaster Recovery Repair API for Nodes/Collections Node Replacement
  • 26. Lessons Learned 1. Solr is a search platform. Do not use it as a database (for scans and lookups). Evaluate your stored fields. 2. Understand access patterns, QPS and queries in detail. Be careful when tuning caches. 3. Have access control for large-scale jobs that directly talk to your cluster. (Internal DDOS attacks are hard to track.) 4. Instrument every piece of infrastructure and collect metrics. 5. Build automated disaster recovery (You will need it. )
  • 27. Questions? Thank You! Nitin Sharma nitin.sharma@bloomreach.com https://www.linkedin.com/in/knitinsharma

Notes de l'éditeur

  1. GM. Thanks for making it to the session I am Nitin… The Talk is about SC2 which was built inside bloomreach to scale to our search use cases. If things go as planned, we should have a few mins for questions. If not I will be more than happy to talk offline. Please post your questions in the activity feed
  2. Typical Search Platforms have low latency requirements as we scale # of collections and # of documents Performance, Availability, Scalability and Stability Job Level Isolation with latency and SLA guarantees Diaster Recovery Platform This presentation will describe an innovative implementation of scaling Solr in an elastic fashion..
  3. Bloomreach is a big data based marketing platform We offer products that make our customer’s digital content more relevant
  4. What kind of search use cases does bloomreach have? A year worth of work and home grown technologies. Staying at a high level Glad to go over offline.
  5. Latency Sensitive Frontend Applications (Incoming customer queries through api) Huge Batch (Map reduce based jobs) jobs constant analyzing and figuring out the relevant content Time Sensitive index reads and writes
  6. Picture is worth a 1000 words Search Traffic – Different set of queries (utilizing all sorts of features faceting, sorting , custom ranking) ETL pipelines, Product based pipelines Pipelines Running at different schedules, different QPS and different throughput requirements. Indexer (Partial and Full indexing) Lets go over what kind of issues we encountered with this setup
  7. Red Circle indicates the issues. Multiple Products, Mulitple read pipleines. They run at different schedules. One can starve the other. One can screw up the latencies of the other. The setup is very static Un even load. Mem/CPU Usage varies and so does the machine utilization OOM PermGen issues (#Collections) Old Gen Issues High CPU Bad Queries Even Sharding Unused features Highlighting Random jars
  8. Bad clients – bring down the cluster/degrade performance (Any misbehaving job shoud Fail instead of bringing cluster down?) Bad queries (with heavy load) – render nodes unresponsive Perm Gen , Old Gen , Young Gen (Parallel GC vs CMS) ZK txn log and data dirs in different drives. We have developed multiple custom components. They might cause exceptions during querytime
  9. Auto commits did help to a certain extent but not too much No job level isolation Client Leaks No Rate limiting
  10. Summary of issues Ok how do we achieve that? Introducing SC2
  11. Spend More time… Linearly Scalable with Dynamic Scaling No direct access to production. Any misbehaving job “Fails” instead of bringing cluster down? Cost Saving:
  12. Instead of from , you replicate to production Access to production is only through replication and not through any other means
  13. Spend More Time…
  14. Old vs New architecture