SlideShare a Scribd company logo
Building a Near Real time
“Logs Search Engine & Analytics”
using Solr
Lucene/Solr Revolution 2013
May 1st , 2013
Rahul Jain
jainr@ivycomptech.com
Who am I?
 Software Engineer
 Member of Core technology @ IVY Comptech,
Hyderabad, India
 6 years of programming experience
 Areas of expertise/interest
 High traffic web applications
 JAVA/J2EE
 Big data, NoSQL
 Information-Retrieval, Machine learning
2
Agenda
• Overview
• Indexing
• Search
• Analytics
• Architecture
• Lessons learned
• Q&A
3
Overview
Issues keep coming in “Production”
5
java.net.ConnectException:
Connection refused
ServerNotRunningException
Too many open files
DBException
NullPointerException
OutOfMemory
Issues
 Hidden Bugs
 DB is down
 Server crashed
 OutOfMemory
 Connection reset
 Nodes go out of cluster
(Due to long GC pause)
 Attack
 DOS (Denial of Service) by
sending a lot of requests
in a short time frame.
5
Why Logs Search?
• Enable production support team to immediately check for issues at
“one place”
– Saves time from logging on to multiple servers to check the logs
• Debugging production issues
– Is it a server specific or occurring in all other servers for that application?
• Allows to track user activity across multiple servers/applications.
• Correlation of multiple issues with each other.
– e.g. Logins might be failing on X Node due to OutOfMemory on Y node.
6
Key Problems
• Hundreds of servers/services generating logs
• terabytes of unstructured logs/day to index in Near Real time
• Millions of log events (Priority one)
• Full Text search & storage of log content
• High Indexing Rate of 1GB/min
• Search latency in seconds is acceptable
7
Logs are different
• varying size
– from few bytes to several KBs
– more no. of documents.
• average 6-8 million log messages in 1 GB logs
– Each line forms one log message except “exception stack trace”.
• different types
– exception stack-trace
– application logs
– http access/error logs
– gclog
• logging format is not uniform across all logs
8
Indexing
Improving Indexing Performance
10
 Solr in Embedded Mode
 Bypassing XML Marshalling/Unmarshalling
 Moving to an Async Approach
 Route traffic on Alternate Shard once “Commit” starts on Main Shard
 Other optimizations
 Add document does update (add + delete)
 Changing Buffer size in BufferIndexInput and BufferIndexOutput
 Reusing Lucene document object
Old Architecture
11
Solr Server
Centralized
Log Collection
Server
Solr Server
Search UIProduction
Server
Logs Transfer
Old Architecture
12
Solr Server
Centralized
Log Collection
Server
Solr Server
Search UIProduction
Server
Logs Transfer
Data Copy1 Data Copy2
Direct Logs transfer
Indexing ServerProduction
Server
Indexing Server
Indexing Server
Open question :
Since now Indexing system is exposed to production servers
- what if a new Indexing Server is added on the fly or one of them is down
13
Solr in Embedded Mode
14
Single JVM
Solrj
(EmbeddedSolrServer)
SolrApplication
Indexing Server
No network latency
Improving Indexing Performance
15
 Solr in Embedded Mode
 Bypassing XML Marshalling/Unmarshalling
 Moving to an Async Approach
 Route traffic on Alternate Shard once “Commit” starts on Main Shard
 Other optimizations
 Add document does update (add + delete)
 Changing Buffer size in BufferIndexInput and BufferIndexOutput
 Reusing Lucene document object
Message Flow
16
SolrInputDocument
SolrInputDocument
(new object)
Single JVM
XML
Marshalling
(UpdateRequest)
XML
Unmarshalling
(XMLLoader)
<add>
<doc>
<field> </field>
<field> </field>
<doc>
</add>
xml
Bypassing XML
Marshalling/Unmarshalling
17
SolrInputDocument
XML
Marshalling
(UpdateRequest)
XML
Unmarshalling
(XMLLoader)
SolrInputDocument
(referenced object)
Passing the Direct reference of
SolrInputDocument Object
Single JVM
DocContentStream
#getSolrInputDocuments()
RefDocumentLoader
#load()
DocUpdateRequest
#add(List<SolrInputDocument>)
LMEmbeddedSolrServer
#add(List<SolrInputDocument>)
Improving Indexing Performance
18
 Solr in Embedded Mode
 Bypassing XML Marshalling/Unmarshalling
 Moving to an Async Approach
 Route traffic on Alternate Shard once “Commit” starts on Main Shard
 Other optimizations
 Add document does update (add + delete)
 Changing Buffer size in BufferIndexInput and BufferIndexOutput
 Reusing Lucene document object
Old Architecture
(Sync)
19
Incoming
Message
Log
Event
Solr
unstructured structured
SolrInput
Document
(10K)
Thread Pool with
multiple threads
Once Batch size reaches to
10k, one of the thread adds
documents to Solr as a Sync
call and wait for response
add
UpdateResponse
Batch
Wait for response
Time taken :
- Indexing 1 chunk (10k) takes anywhere between 400ms-3000ms#
- while commit it is from 6000ms-23000ms and even more…
- In 1 GB there are around 600 chunks
- so most of time is just spent in waiting for response
#Indexing time vary based on several factors, for e.g. hardware configurations, application type, nature of data,
number of index fields/stored fields, analyzer type etc.
Moving to an Asynchronous
Architecture
20
Incoming
Message
Log Event
Event Pipeline
(BlockingQueue)
Log Event
SolrInput
Document
Log Message
Transformation
(Analyzer Thread Pool)
Log Event to
SolrInputDocument
(Indexer Thread Pool)
Add a Batch of Log
Event to Pipeline
Remove Batch of Log
Event from Pipeline
Solr
Add to
Batch
Remove
from Batch
Improving Indexing Performance
21
 Solr in Embedded Mode
 Bypassing XML Marshalling/Unmarshalling
 Moving to an Async Approach
 Route traffic on Alternate Shard once “Commit” starts on Main Shard
 Other optimizations
 Add document does update (add + delete)
 Changing Buffer size in BufferIndexInput and BufferIndexOutput
 Reusing Lucene document object
Commit Strategy
22
Solr
20130501_0
20130501_1
20130501_2
Shard
(Single Node)
SolrInputDocument
Indexing
Partition
function
22
Indexing traffic on alternate Shard
Once commit starts on “Main Shard”
23
Solr
20130501_0
20130501_1
20130501_2
Main Shard
(Single Node)
20130501_3
20130501_4
20130501_5
Alternate
Shard
SolrInputDocument
Indexing
PairPartition
function
23
Commit Strategy
• Merits
– Scales well
– Indexing can run continuously
• De-Merits
– Search needs to be done on both cores
– but end of the day these two can be merged into
one core
24
Improving Indexing Performance
25
 Solr in Embedded Mode
 Bypassing XML Marshalling/Unmarshalling
 Moving to an Async Approach
 Route traffic on Alternate Shard once “Commit” starts on Main Shard
 Other optimizations
 Add document does update (add + delete)
 Changing Buffer size in BufferIndexInput and BufferIndexOutput
 Reusing Lucene document object
Other Optimizations
• In Solr, Add document does update (add + delete)
– for each add document call, Solr internally creates a delete term with “id” field
for delete
– but log messages are always unique
• Changing Buffer Size in BufferIndexInput and BufferIndexOutput
– Increasing buffer size improves the indexing performance especially if disk is
slow.
– More Process heap is required accordingly as lot of files are created if data
volume is high.
• Reusing Lucene document and Field instances
- Check org/apache/lucene/benchmark/byTask/feeds/DocMaker.java
• Check for more information on Improving Indexing performance
http://rahuldausa.wordpress.com/2013/01/14/scaling-lucene-for-indexing-a-billion-documents/
26
The Result
27
Data Volume v/s Indexing time
(GB/Minutes)
3
14
38
56
112
0.5 2 4.5
9
22
0
20
40
60
80
100
120
1GB 4GB 8GB 17GB 35GB
IndexingTime
Before
After
28
Search
Partition
• Partitioning the data properly improves the Search performance significantly
• Partition Type
– Server based Partition
• Number of documents does not balance out evenly in all shards
– Date and Time based Partition
• Hotspot a single shard
– Least loaded Shard (index)
• By number of documents
• Balances out documents evenly in all shards
• Can’t provide optimal search performance, as all shards needs to be hit
30
Incoming
message
Server Based
Partition
Date & time
Based
Partition
Solr Shard
Hybrid Approach
Multi-tier Partition
jacob
Incoming
Message
Date & time
based
Partition
20130501_00_0
mia
Solr Shard
(date_hour_shardId)
20130501_06_0
20130501_00_1
Server based
Partition
Jacob: {
message: hello lucene
time:20130501:11:00:00
}
Indexing ServerProduction Server
mia: {
message: hello solr and lucene
time:20130501:04:00:00
}
31
Distributed Search
• One shard is chosen as leader shard
– Forwards request to all other shards and collects response.
• Requires all documents to must have
– Unique key (e.g. “id”) across all shards and should be stored
– Used a approach based on epoch to generate a unique id across cluster
inspired from instagram engineering blog#
• Unique Id
– Combination of epoch time, unique node id and an incremented number
epoch_time unique_node_id incremented_number
Unique Id
#http://instagram-engineering.tumblr.com/post/10853187575/sharding-ids-at-instagram
32
How Search works
Zookeeper
(zk)
Search Server
(tomcat)
Pushes shard
mapping to zk
Create a watcher on zk node
and update the In-Memory
shard mapping on change
User query QueryParser Indexing Server
(maestro)
Search query with
shards parameter
Shard Mapping
(In Memory structure)
Lookup
33
erverIndexing
Server
How Search works (Cont’d)
from: now-24hour
server: jacob from: now-4hour
from: now-11hour
Indexing
server
Indexing
server
Indexing
server
Lookup on shards for today
shard(s) having data for jacob
from last 6hour shard
shard(s) having data for last
12 hours
34
Leader shard
(maestro)
Analytics
• Young GC timings/chart
• Full GC timings
• DB Access/Update Timings
– Reveal is there any pattern across all DB servers?
• Real time Exceptions/Issues reporting using
facet query.
• Apache Access/Error KPI
35
Analytics
• Custom report based on “Key:Value” Pair
For e.g.
time – key:value
18:28:28, 541 - activeThreadCount:5
18:28:29, 541- activeThreadCount:8
18:28:30, 541 - activeThreadCount:9
18:28:31, 541- activeThreadCount:3
36
0
2
4
6
8
10
activeThreadCount
Architecture
Data Flows
38
Weird
Log File
Zero Copy
server
Kafka Broker
Indexing
Server
Search UI
Periodic Push
Real time transfer
from In Memory
(Log4jAppender)
o Zero Copy server
- Deployed on each Indexing server for data locality
- Write incoming files to disk as Indexing server doesn’t index with same rate
o Kafka Broker
o Kafka Appender pass the messages from in-Memory
Periodic Push
39
Zookeeper
Indexing
Server
Zero copy
server
Node 1
Production
Server
Logs transfer
Daemon
Disk
Node…n
.
.
.
Real time transfer
40
Indexing
Server
Kafka
Broker
Indexing
Server
Search UI
Production
Server
(Kafka Appender)
Zookeeper
Indexing
Server
Indexing
Server
Update Consumed
Message offset
Conclusion
Lessons Learned
• Always find sweet-spots for
– Number of Indexer threads, that can run in parallel
– Randomize
• Merge factor
• Commit Interval
• ramBufferSize
– Increasing Cache Size helps in bringing down search latency
• but with Full GC penalty
• Index size of more than 5GB in one core does not go well with Search
• Search on a lot of cores does not provide optimal response time
– Overall query response time is limited by slowest shard’s performance
• Solr scales both vertically and horizontally
• Batching of log messages based on message size (~10KB) in a MessageSet
– Kafka adds 10 bytes on each message
– Most of the time Log messages are < 100 bytes
41
Thank You
jainr@ivycomptech.com
42

More Related Content

What's hot (20)

PDF
Tuning Solr and its Pipeline for Logs: Presented by Rafał Kuć & Radu Gheorghe...
Lucidworks
 
PDF
Faceting Optimizations for Solr: Presented by Toke Eskildsen, State & Univers...
Lucidworks
 
PPTX
Lucene Revolution 2013 - Scaling Solr Cloud for Large-scale Social Media Anal...
thelabdude
 
PDF
Cross Datacenter Replication in Apache Solr 6
Shalin Shekhar Mangar
 
PPTX
DZone Java 8 Block Buster: Query Databases Using Streams
Speedment, Inc.
 
PPTX
SFBay Area Solr Meetup - June 18th: Benchmarking Solr Performance
Lucidworks (Archived)
 
PDF
Real-time Inverted Search in the Cloud Using Lucene and Storm
lucenerevolution
 
PPTX
Scaling Through Partitioning and Shard Splitting in Solr 4
thelabdude
 
PDF
User Defined Partitioning on PlazmaDB
Kai Sasaki
 
PDF
Data Analytics Service Company and Its Ruby Usage
SATOSHI TAGOMORI
 
PDF
Call me maybe: Jepsen and flaky networks
Shalin Shekhar Mangar
 
PDF
Scaling massive elastic search clusters - Rafał Kuć - Sematext
Rafał Kuć
 
PDF
Faster Data Analytics with Apache Spark using Apache Solr - Kiran Chitturi, L...
Lucidworks
 
PDF
Introduction to SolrCloud
Varun Thacker
 
PDF
How to Run Solr on Docker and Why
Sematext Group, Inc.
 
PDF
Logging for Production Systems in The Container Era
Sadayuki Furuhashi
 
PDF
How to make a simple cheap high availability self-healing solr cluster
lucenerevolution
 
PPT
NYJavaSIG - Big Data Microservices w/ Speedment
Speedment, Inc.
 
PDF
Introduction to Apache Solr
Christos Manios
 
PPTX
NYC Lucene/Solr Meetup: Spark / Solr
thelabdude
 
Tuning Solr and its Pipeline for Logs: Presented by Rafał Kuć & Radu Gheorghe...
Lucidworks
 
Faceting Optimizations for Solr: Presented by Toke Eskildsen, State & Univers...
Lucidworks
 
Lucene Revolution 2013 - Scaling Solr Cloud for Large-scale Social Media Anal...
thelabdude
 
Cross Datacenter Replication in Apache Solr 6
Shalin Shekhar Mangar
 
DZone Java 8 Block Buster: Query Databases Using Streams
Speedment, Inc.
 
SFBay Area Solr Meetup - June 18th: Benchmarking Solr Performance
Lucidworks (Archived)
 
Real-time Inverted Search in the Cloud Using Lucene and Storm
lucenerevolution
 
Scaling Through Partitioning and Shard Splitting in Solr 4
thelabdude
 
User Defined Partitioning on PlazmaDB
Kai Sasaki
 
Data Analytics Service Company and Its Ruby Usage
SATOSHI TAGOMORI
 
Call me maybe: Jepsen and flaky networks
Shalin Shekhar Mangar
 
Scaling massive elastic search clusters - Rafał Kuć - Sematext
Rafał Kuć
 
Faster Data Analytics with Apache Spark using Apache Solr - Kiran Chitturi, L...
Lucidworks
 
Introduction to SolrCloud
Varun Thacker
 
How to Run Solr on Docker and Why
Sematext Group, Inc.
 
Logging for Production Systems in The Container Era
Sadayuki Furuhashi
 
How to make a simple cheap high availability self-healing solr cluster
lucenerevolution
 
NYJavaSIG - Big Data Microservices w/ Speedment
Speedment, Inc.
 
Introduction to Apache Solr
Christos Manios
 
NYC Lucene/Solr Meetup: Spark / Solr
thelabdude
 

Similar to Building a near real time search engine & analytics for logs using solr (20)

KEY
Apache Solr - Enterprise search platform
Tommaso Teofili
 
PPTX
Apache Solr Workshop
JSGB
 
PPTX
IT talk SPb "Full text search for lazy guys"
DataArt
 
PDF
Apache Solr crash course
Tommaso Teofili
 
PDF
Webinar: Faster Log Indexing with Fusion
Lucidworks
 
PDF
Basics of Solr and Solr Integration with AEM6
DEEPAK KHETAWAT
 
PDF
Building a Large Scale SEO/SEM Application with Apache Solr: Presented by Rah...
Lucidworks
 
PDF
Hadoop-scale Search with Solr
DataWorks Summit
 
PDF
Keynote Yonik Seeley & Steve Rowe lucene solr roadmap
lucenerevolution
 
PDF
KEYNOTE: Lucene / Solr road map
lucenerevolution
 
PDF
Building a Real-Time News Search Engine: Presented by Ramkumar Aiyengar, Bloo...
Lucidworks
 
PPTX
Building a Large Scale SEO/SEM Application with Apache Solr
Rahul Jain
 
PDF
Solr4 nosql search_server_2013
Lucidworks (Archived)
 
PPTX
Introduction to Lucene & Solr and Usecases
Rahul Jain
 
PPTX
SolrCloud in Public Cloud: Scaling Compute Independently from Storage - Ilan ...
Lucidworks
 
PDF
Search Engine-Building with Lucene and Solr
Kai Chan
 
PDF
Consuming RealTime Signals in Solr
Umesh Prasad
 
PPTX
Apache Solr for begginers
Alexander Tokarev
 
KEY
Solr 101
Findwise
 
Apache Solr - Enterprise search platform
Tommaso Teofili
 
Apache Solr Workshop
JSGB
 
IT talk SPb "Full text search for lazy guys"
DataArt
 
Apache Solr crash course
Tommaso Teofili
 
Webinar: Faster Log Indexing with Fusion
Lucidworks
 
Basics of Solr and Solr Integration with AEM6
DEEPAK KHETAWAT
 
Building a Large Scale SEO/SEM Application with Apache Solr: Presented by Rah...
Lucidworks
 
Hadoop-scale Search with Solr
DataWorks Summit
 
Keynote Yonik Seeley & Steve Rowe lucene solr roadmap
lucenerevolution
 
KEYNOTE: Lucene / Solr road map
lucenerevolution
 
Building a Real-Time News Search Engine: Presented by Ramkumar Aiyengar, Bloo...
Lucidworks
 
Building a Large Scale SEO/SEM Application with Apache Solr
Rahul Jain
 
Solr4 nosql search_server_2013
Lucidworks (Archived)
 
Introduction to Lucene & Solr and Usecases
Rahul Jain
 
SolrCloud in Public Cloud: Scaling Compute Independently from Storage - Ilan ...
Lucidworks
 
Search Engine-Building with Lucene and Solr
Kai Chan
 
Consuming RealTime Signals in Solr
Umesh Prasad
 
Apache Solr for begginers
Alexander Tokarev
 
Solr 101
Findwise
 
Ad

More from lucenerevolution (20)

PDF
Text Classification Powered by Apache Mahout and Lucene
lucenerevolution
 
PDF
State of the Art Logging. Kibana4Solr is Here!
lucenerevolution
 
PDF
Search at Twitter
lucenerevolution
 
PDF
Building Client-side Search Applications with Solr
lucenerevolution
 
PDF
Scaling Solr with SolrCloud
lucenerevolution
 
PDF
Administering and Monitoring SolrCloud Clusters
lucenerevolution
 
PDF
Implementing a Custom Search Syntax using Solr, Lucene, and Parboiled
lucenerevolution
 
PDF
Using Solr to Search and Analyze Logs
lucenerevolution
 
PDF
Enhancing relevancy through personalization & semantic search
lucenerevolution
 
PDF
Solr's Admin UI - Where does the data come from?
lucenerevolution
 
PDF
Schemaless Solr and the Solr Schema REST API
lucenerevolution
 
PDF
High Performance JSON Search and Relational Faceted Browsing with Lucene
lucenerevolution
 
PDF
Text Classification with Lucene/Solr, Apache Hadoop and LibSVM
lucenerevolution
 
PDF
Faceted Search with Lucene
lucenerevolution
 
PDF
Recent Additions to Lucene Arsenal
lucenerevolution
 
PDF
Turning search upside down
lucenerevolution
 
PDF
Spellchecking in Trovit: Implementing a Contextual Multi-language Spellchecke...
lucenerevolution
 
PDF
Shrinking the haystack wes caldwell - final
lucenerevolution
 
PDF
The First Class Integration of Solr with Hadoop
lucenerevolution
 
PDF
A Novel methodology for handling Document Level Security in Search Based Appl...
lucenerevolution
 
Text Classification Powered by Apache Mahout and Lucene
lucenerevolution
 
State of the Art Logging. Kibana4Solr is Here!
lucenerevolution
 
Search at Twitter
lucenerevolution
 
Building Client-side Search Applications with Solr
lucenerevolution
 
Scaling Solr with SolrCloud
lucenerevolution
 
Administering and Monitoring SolrCloud Clusters
lucenerevolution
 
Implementing a Custom Search Syntax using Solr, Lucene, and Parboiled
lucenerevolution
 
Using Solr to Search and Analyze Logs
lucenerevolution
 
Enhancing relevancy through personalization & semantic search
lucenerevolution
 
Solr's Admin UI - Where does the data come from?
lucenerevolution
 
Schemaless Solr and the Solr Schema REST API
lucenerevolution
 
High Performance JSON Search and Relational Faceted Browsing with Lucene
lucenerevolution
 
Text Classification with Lucene/Solr, Apache Hadoop and LibSVM
lucenerevolution
 
Faceted Search with Lucene
lucenerevolution
 
Recent Additions to Lucene Arsenal
lucenerevolution
 
Turning search upside down
lucenerevolution
 
Spellchecking in Trovit: Implementing a Contextual Multi-language Spellchecke...
lucenerevolution
 
Shrinking the haystack wes caldwell - final
lucenerevolution
 
The First Class Integration of Solr with Hadoop
lucenerevolution
 
A Novel methodology for handling Document Level Security in Search Based Appl...
lucenerevolution
 
Ad

Recently uploaded (20)

PPTX
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PPTX
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
PDF
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PPTX
THE TAME BIRD AND THE FREE BIRD.pptxxxxx
MarcChristianNicolas
 
PPTX
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
PDF
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
PPTX
How to Create a PDF Report in Odoo 18 - Odoo Slides
Celine George
 
PPTX
Mathematics 5 - Time Measurement: Time Zone
menchreo
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PPTX
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
BANDHA (BANDAGES) PPT.pptx ayurveda shalya tantra
rakhan78619
 
PPTX
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
PPSX
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
PPTX
How to Set Maximum Difference Odoo 18 POS
Celine George
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PDF
IMP NAAC REFORMS 2024 - 10 Attributes.pdf
BHARTIWADEKAR
 
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
THE TAME BIRD AND THE FREE BIRD.pptxxxxx
MarcChristianNicolas
 
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
How to Create a PDF Report in Odoo 18 - Odoo Slides
Celine George
 
Mathematics 5 - Time Measurement: Time Zone
menchreo
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
BANDHA (BANDAGES) PPT.pptx ayurveda shalya tantra
rakhan78619
 
MENINGITIS: NURSING MANAGEMENT, BACTERIAL MENINGITIS, VIRAL MENINGITIS.pptx
PRADEEP ABOTHU
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
How to Set Maximum Difference Odoo 18 POS
Celine George
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
IMP NAAC REFORMS 2024 - 10 Attributes.pdf
BHARTIWADEKAR
 

Building a near real time search engine & analytics for logs using solr

  • 1. Building a Near Real time “Logs Search Engine & Analytics” using Solr Lucene/Solr Revolution 2013 May 1st , 2013 Rahul Jain [email protected]
  • 2. Who am I?  Software Engineer  Member of Core technology @ IVY Comptech, Hyderabad, India  6 years of programming experience  Areas of expertise/interest  High traffic web applications  JAVA/J2EE  Big data, NoSQL  Information-Retrieval, Machine learning 2
  • 3. Agenda • Overview • Indexing • Search • Analytics • Architecture • Lessons learned • Q&A 3
  • 5. Issues keep coming in “Production” 5 java.net.ConnectException: Connection refused ServerNotRunningException Too many open files DBException NullPointerException OutOfMemory Issues  Hidden Bugs  DB is down  Server crashed  OutOfMemory  Connection reset  Nodes go out of cluster (Due to long GC pause)  Attack  DOS (Denial of Service) by sending a lot of requests in a short time frame. 5
  • 6. Why Logs Search? • Enable production support team to immediately check for issues at “one place” – Saves time from logging on to multiple servers to check the logs • Debugging production issues – Is it a server specific or occurring in all other servers for that application? • Allows to track user activity across multiple servers/applications. • Correlation of multiple issues with each other. – e.g. Logins might be failing on X Node due to OutOfMemory on Y node. 6
  • 7. Key Problems • Hundreds of servers/services generating logs • terabytes of unstructured logs/day to index in Near Real time • Millions of log events (Priority one) • Full Text search & storage of log content • High Indexing Rate of 1GB/min • Search latency in seconds is acceptable 7
  • 8. Logs are different • varying size – from few bytes to several KBs – more no. of documents. • average 6-8 million log messages in 1 GB logs – Each line forms one log message except “exception stack trace”. • different types – exception stack-trace – application logs – http access/error logs – gclog • logging format is not uniform across all logs 8
  • 10. Improving Indexing Performance 10  Solr in Embedded Mode  Bypassing XML Marshalling/Unmarshalling  Moving to an Async Approach  Route traffic on Alternate Shard once “Commit” starts on Main Shard  Other optimizations  Add document does update (add + delete)  Changing Buffer size in BufferIndexInput and BufferIndexOutput  Reusing Lucene document object
  • 11. Old Architecture 11 Solr Server Centralized Log Collection Server Solr Server Search UIProduction Server Logs Transfer
  • 12. Old Architecture 12 Solr Server Centralized Log Collection Server Solr Server Search UIProduction Server Logs Transfer Data Copy1 Data Copy2
  • 13. Direct Logs transfer Indexing ServerProduction Server Indexing Server Indexing Server Open question : Since now Indexing system is exposed to production servers - what if a new Indexing Server is added on the fly or one of them is down 13
  • 14. Solr in Embedded Mode 14 Single JVM Solrj (EmbeddedSolrServer) SolrApplication Indexing Server No network latency
  • 15. Improving Indexing Performance 15  Solr in Embedded Mode  Bypassing XML Marshalling/Unmarshalling  Moving to an Async Approach  Route traffic on Alternate Shard once “Commit” starts on Main Shard  Other optimizations  Add document does update (add + delete)  Changing Buffer size in BufferIndexInput and BufferIndexOutput  Reusing Lucene document object
  • 16. Message Flow 16 SolrInputDocument SolrInputDocument (new object) Single JVM XML Marshalling (UpdateRequest) XML Unmarshalling (XMLLoader) <add> <doc> <field> </field> <field> </field> <doc> </add> xml
  • 17. Bypassing XML Marshalling/Unmarshalling 17 SolrInputDocument XML Marshalling (UpdateRequest) XML Unmarshalling (XMLLoader) SolrInputDocument (referenced object) Passing the Direct reference of SolrInputDocument Object Single JVM DocContentStream #getSolrInputDocuments() RefDocumentLoader #load() DocUpdateRequest #add(List<SolrInputDocument>) LMEmbeddedSolrServer #add(List<SolrInputDocument>)
  • 18. Improving Indexing Performance 18  Solr in Embedded Mode  Bypassing XML Marshalling/Unmarshalling  Moving to an Async Approach  Route traffic on Alternate Shard once “Commit” starts on Main Shard  Other optimizations  Add document does update (add + delete)  Changing Buffer size in BufferIndexInput and BufferIndexOutput  Reusing Lucene document object
  • 19. Old Architecture (Sync) 19 Incoming Message Log Event Solr unstructured structured SolrInput Document (10K) Thread Pool with multiple threads Once Batch size reaches to 10k, one of the thread adds documents to Solr as a Sync call and wait for response add UpdateResponse Batch Wait for response Time taken : - Indexing 1 chunk (10k) takes anywhere between 400ms-3000ms# - while commit it is from 6000ms-23000ms and even more… - In 1 GB there are around 600 chunks - so most of time is just spent in waiting for response #Indexing time vary based on several factors, for e.g. hardware configurations, application type, nature of data, number of index fields/stored fields, analyzer type etc.
  • 20. Moving to an Asynchronous Architecture 20 Incoming Message Log Event Event Pipeline (BlockingQueue) Log Event SolrInput Document Log Message Transformation (Analyzer Thread Pool) Log Event to SolrInputDocument (Indexer Thread Pool) Add a Batch of Log Event to Pipeline Remove Batch of Log Event from Pipeline Solr Add to Batch Remove from Batch
  • 21. Improving Indexing Performance 21  Solr in Embedded Mode  Bypassing XML Marshalling/Unmarshalling  Moving to an Async Approach  Route traffic on Alternate Shard once “Commit” starts on Main Shard  Other optimizations  Add document does update (add + delete)  Changing Buffer size in BufferIndexInput and BufferIndexOutput  Reusing Lucene document object
  • 23. Indexing traffic on alternate Shard Once commit starts on “Main Shard” 23 Solr 20130501_0 20130501_1 20130501_2 Main Shard (Single Node) 20130501_3 20130501_4 20130501_5 Alternate Shard SolrInputDocument Indexing PairPartition function 23
  • 24. Commit Strategy • Merits – Scales well – Indexing can run continuously • De-Merits – Search needs to be done on both cores – but end of the day these two can be merged into one core 24
  • 25. Improving Indexing Performance 25  Solr in Embedded Mode  Bypassing XML Marshalling/Unmarshalling  Moving to an Async Approach  Route traffic on Alternate Shard once “Commit” starts on Main Shard  Other optimizations  Add document does update (add + delete)  Changing Buffer size in BufferIndexInput and BufferIndexOutput  Reusing Lucene document object
  • 26. Other Optimizations • In Solr, Add document does update (add + delete) – for each add document call, Solr internally creates a delete term with “id” field for delete – but log messages are always unique • Changing Buffer Size in BufferIndexInput and BufferIndexOutput – Increasing buffer size improves the indexing performance especially if disk is slow. – More Process heap is required accordingly as lot of files are created if data volume is high. • Reusing Lucene document and Field instances - Check org/apache/lucene/benchmark/byTask/feeds/DocMaker.java • Check for more information on Improving Indexing performance http://rahuldausa.wordpress.com/2013/01/14/scaling-lucene-for-indexing-a-billion-documents/ 26
  • 28. Data Volume v/s Indexing time (GB/Minutes) 3 14 38 56 112 0.5 2 4.5 9 22 0 20 40 60 80 100 120 1GB 4GB 8GB 17GB 35GB IndexingTime Before After 28
  • 30. Partition • Partitioning the data properly improves the Search performance significantly • Partition Type – Server based Partition • Number of documents does not balance out evenly in all shards – Date and Time based Partition • Hotspot a single shard – Least loaded Shard (index) • By number of documents • Balances out documents evenly in all shards • Can’t provide optimal search performance, as all shards needs to be hit 30 Incoming message Server Based Partition Date & time Based Partition Solr Shard Hybrid Approach
  • 31. Multi-tier Partition jacob Incoming Message Date & time based Partition 20130501_00_0 mia Solr Shard (date_hour_shardId) 20130501_06_0 20130501_00_1 Server based Partition Jacob: { message: hello lucene time:20130501:11:00:00 } Indexing ServerProduction Server mia: { message: hello solr and lucene time:20130501:04:00:00 } 31
  • 32. Distributed Search • One shard is chosen as leader shard – Forwards request to all other shards and collects response. • Requires all documents to must have – Unique key (e.g. “id”) across all shards and should be stored – Used a approach based on epoch to generate a unique id across cluster inspired from instagram engineering blog# • Unique Id – Combination of epoch time, unique node id and an incremented number epoch_time unique_node_id incremented_number Unique Id #http://instagram-engineering.tumblr.com/post/10853187575/sharding-ids-at-instagram 32
  • 33. How Search works Zookeeper (zk) Search Server (tomcat) Pushes shard mapping to zk Create a watcher on zk node and update the In-Memory shard mapping on change User query QueryParser Indexing Server (maestro) Search query with shards parameter Shard Mapping (In Memory structure) Lookup 33 erverIndexing Server
  • 34. How Search works (Cont’d) from: now-24hour server: jacob from: now-4hour from: now-11hour Indexing server Indexing server Indexing server Lookup on shards for today shard(s) having data for jacob from last 6hour shard shard(s) having data for last 12 hours 34 Leader shard (maestro)
  • 35. Analytics • Young GC timings/chart • Full GC timings • DB Access/Update Timings – Reveal is there any pattern across all DB servers? • Real time Exceptions/Issues reporting using facet query. • Apache Access/Error KPI 35
  • 36. Analytics • Custom report based on “Key:Value” Pair For e.g. time – key:value 18:28:28, 541 - activeThreadCount:5 18:28:29, 541- activeThreadCount:8 18:28:30, 541 - activeThreadCount:9 18:28:31, 541- activeThreadCount:3 36 0 2 4 6 8 10 activeThreadCount
  • 38. Data Flows 38 Weird Log File Zero Copy server Kafka Broker Indexing Server Search UI Periodic Push Real time transfer from In Memory (Log4jAppender) o Zero Copy server - Deployed on each Indexing server for data locality - Write incoming files to disk as Indexing server doesn’t index with same rate o Kafka Broker o Kafka Appender pass the messages from in-Memory
  • 39. Periodic Push 39 Zookeeper Indexing Server Zero copy server Node 1 Production Server Logs transfer Daemon Disk Node…n . . .
  • 40. Real time transfer 40 Indexing Server Kafka Broker Indexing Server Search UI Production Server (Kafka Appender) Zookeeper Indexing Server Indexing Server Update Consumed Message offset
  • 41. Conclusion Lessons Learned • Always find sweet-spots for – Number of Indexer threads, that can run in parallel – Randomize • Merge factor • Commit Interval • ramBufferSize – Increasing Cache Size helps in bringing down search latency • but with Full GC penalty • Index size of more than 5GB in one core does not go well with Search • Search on a lot of cores does not provide optimal response time – Overall query response time is limited by slowest shard’s performance • Solr scales both vertically and horizontally • Batching of log messages based on message size (~10KB) in a MessageSet – Kafka adds 10 bytes on each message – Most of the time Log messages are < 100 bytes 41