SlideShare a Scribd company logo
HBase Coprocessor to Index Columns into
ElasticSearch Cluster
Dibyendu Bhattacharya
Architect – Big Data Analytics
HappiestMinds
About HappiestMinds
• Next Gen IT Consultancy Company launched Aug 2011 . Head office
in Bangalore, India, have offices in USA, UK, Canada, Australia and
Singapore. Core focus on disruptive technologies like Big
Data/Analytics, Cloud, Mobile and Social.
• Raised USD 45M Series A Funding from prominent VCs , Intel
Capital, Canaan Partners and founders.
• 45 + Client Globally, 800 + Employees.
About Myself :
Dibyendu is Big Data Architect at HappiestMinds where he is involved
in architecting and developing solutions on a Hadoop-based analytics
and search platform. In the past few years, he has worked on complex
data analytics related projects that utilize Hadoop, HBase, and real
time analytics. Before HappiestMinds, he worked at EMC, FairIsaac,
Cisco, IBM etc.
This Presentation….
…….will explores the design and challenges HappiestMinds faced
while implementing a storage and search infrastructure for a
library procurement system where books/documents/artifacts
related records are stored in Apache HBase. Upon bulk insert of
book records into HBase, the Elasticsearch index is built offline
using MapReduce but there are certain use cases where the
records need to be re-indexed in Elasticsearch using Region
Observer Coprocessors.
Storing and Indexing Book records from
Publishers and Libraries
Publisher/
Library Data
HDFS
HBase
Cluster
Data Pre Processing
• Data ingestion to Hadoop
Data Loading : Map Reduce
• Bulk Data upload to HBase table1
2
1
2
3 Elastic
Search
Cluster
3
Data Indexing : Map Reduce
• Incremental Data Indexing to
ElasticSearch
• Part of the document is indexed.
User
Search
4
4 User Search:
• User Search Data.
• Search engine display results.
• Full data access request fetch
from HBase.
User Update data5a
5b
5 User Update:
• User update HBase record.
• Update will propagate to Search
Cluster.
HBase Write Path
HBase Write Path
HBase Storage Layout
Region Server
………………….…….
HBase Put Request
Here comes the Coprocessors
The idea of HBase Coprocessors was inspired by Google’s Big
Table coprocessors.
• HBase coprocessors are an addition to data-manipulation
toolset that were introduced as a feature in HBase in the
0.92.0 release.
• With the introduction of coprocessors, we can push arbitrary
computation out to the HBase nodes hosting data.
• Coprocessors can be loaded globally on all tables and regions
hosted by the region server, or the administrator can specify
which coprocessors should be loaded on all regions for a table
on a per-table basis.
Coprocessors Class and Interfaces
The Coprocessor Interface
• All User code must inherit from this class
The CoprocessorEnvironement Interface
• Retain state across invocation
The CoprocessorHost interfaces
• Tied state and the user code
Observer Coprocessors
Two types of Coprocessor
• observer, which are like triggers in conventional databases.
• endpoint, dynamic RPC endpoints that resemble stored procedures.
Observer Coprocessor : Callback functions/hooks for every explicit API
method
• MasterObserver
• Hooks into HMaster API
• RegionObserver
• Hooks into Region related operations
• WALObserver
• Hooks into write-ahead log operations
RegionObserver Coprocessor … Put ( )
RegionObserver: Provides hooks for data manipulation events, Get, Put,
Delete, Scan, and so on. There is an instance of a RegionObserver
coprocessor for every table region and the scope of the observations
they can make is constrained to that region.
RegionObserver Coprocessor ... Get ( )
Let us see what is ElasticSearch
Distributed Search Engine : ElasticSearch
• Distributed
• Highly-available
• REST based search engine (on top of Lucene)
• Designed to speak JSON (JSON in, JSON out)
• Built on top of Lucene.
For each index you can specify:
• Number of shards
Each index has fixed number of shards
• Number of replicas
Each shard can have 0-many replicas, can be changed
dynamically
ElasticSearch : Automatic Discovery
Discovery Module responsible for discovering nodes within the
cluster , as well as electing master node.
The responsibility of master node is to maintain global cluster
state, and act if nodes join or leave cluster by reassigning shards.
ElasticSearch : Talking to Cluster
ElasticSearch : Nodes are Different
The idea is to perform Indexing into
ElasticSearch from HBase Coprocessors…..
We need a Java Client…
Use ElasticSearch Transport Client : The Transport Client connects
remotely to an ElasticSearch cluster. It does not join the cluster, but
simply gets one or more initial transport addresses and communicates
with them in round robin fashion on each action (though most actions
will probably be “two hop” operations).
And Index with Transport Client…
But this approach has a problem..
• Client does not have the knowledge of the ElasticSearch
cluster.
• Two Hop indexing.
• No fault tolerant mechanism if transport address is down.
• HBase Region Servers can have hundreds regions and
hence hundreds of transport client.
Solution
• Use ElasticSearch Node Client. Client Node does not hold
index but have knowledge of complete Cluster.
• Use HBASE-6505 to share Node Client across Regions in a
RegionServer.
HBase 6505
RegionCoprocessorEnvironment provides a getSharedData()
method, which returns a ConcurrentMap, which is held by
the RegionCoprocessorHost as a weak reference (in a special
map with strongly referenced keys and weakly referenced
values), and held strongly by the RegionEnvironment.
That way if the coprocessor is blacklisted the coprocessors
environment is removed, and any shared data is immediately
available for garbage collection. This shared data is per
RegionServer. As long as there is at least one region observer
or endpoint active this shared data is not garbage collected
and can be accessed to share state between the remaining
coprocessors of the same class.
Shared Node Client across Regions
Shared Node Client across Regions
The Final Problem….
Concurrency Control …
HBase Solve it using MVCC (Multi Version Concurrency Control):
Implement updates not by deleting an old piece of data and
overwriting it with a new one, but instead by making the old data as
obsolete and adding newer version
And ElasticSearch using OCC (Optimistic Concurrency Control) :
Multiple transactions can complete without affecting each other, and
that therefore transactions can proceed without locking the data
resources that they affect. Before committing, each transaction verifies
that no other transaction has modified its data. If the check reveals
conflicting modifications, the committing transaction rolls back.
Let See a Conflict.. Search and Update
HBase ES
C1
C2
V1
V1
V1(M/R)
HBase ES
C1
C2
V1
V1
V2 (Update success)
Conflict
V2(CP)
V1(M/R)
One More Conflict.. Search and Update
HBase ES
C1
C2
V1
V1
V1(M/R)V1(M/R)
HBase ES
C1
C2
V1
V1
Conflict
V2(M/R)
Conflict
The bottom line is.
Search and Update should only be successful when the
Version of ElasticSearch and Version of HBase is same
during the update.
Solution..
1. Data Load from Source to HBase will insert a document with Put call.
2. postPut coprocessor will perform incrementColumnValue for a version
column.
………………………
………………………
Solution..
3. Same Version number will be propagated to ElasticSearch during
Map Reduce based bulk indexing. ElasticSearch support version
number supplied externally.
4. Step 1-3 will repeat for any new data upload.
5. During search and update , the client will perform checkAndPut ()
call.
5i. Client perform search and get the Version number from ElasticSearch
5ii. Client construct a Put with new Version No = Old Version + 1
5iii. Client perform checkAndPut, and check for old Version number before
doing Put.
5iv. postCheckAndPut Coprocessor invoked to propagate the successful Put to
Search Cluster.
5v. After this step the Version Number of HBase column and ElasticSearch
version will be equal.
Solution..
……………………………….
Thanks
Dibyendu.B@happiestminds.com

More Related Content

PPTX
Harmonizing Multi-tenant HBase Clusters for Managing Workload Diversity
PPTX
HBase at Bloomberg: High Availability Needs for the Financial Industry
PPTX
HBaseCon 2012 | Building a Large Search Platform on a Shoestring Budget
PDF
HBaseCon 2013: Apache HBase Operations at Pinterest
PPTX
HBaseCon 2012 | HBase, the Use Case in eBay Cassini
PDF
HBaseCon 2015- HBase @ Flipboard
PDF
HBase Read High Availability Using Timeline-Consistent Region Replicas
PPTX
A Survey of HBase Application Archetypes
Harmonizing Multi-tenant HBase Clusters for Managing Workload Diversity
HBase at Bloomberg: High Availability Needs for the Financial Industry
HBaseCon 2012 | Building a Large Search Platform on a Shoestring Budget
HBaseCon 2013: Apache HBase Operations at Pinterest
HBaseCon 2012 | HBase, the Use Case in eBay Cassini
HBaseCon 2015- HBase @ Flipboard
HBase Read High Availability Using Timeline-Consistent Region Replicas
A Survey of HBase Application Archetypes

What's hot (20)

PPTX
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
PPTX
Digital Library Collection Management using HBase
PPTX
HBaseCon 2013: Streaming Data into Apache HBase using Apache Flume: Experienc...
PPTX
HBaseCon 2015: State of HBase Docs and How to Contribute
PDF
HBaseCon 2013:High-Throughput, Transactional Stream Processing on Apache HBase
PPTX
Keynote: The Future of Apache HBase
PPT
HBaseCon 2012 | You’ve got HBase! How AOL Mail Handles Big Data
PPTX
Optimizing Apache HBase for Cloud Storage in Microsoft Azure HDInsight
PPTX
HBaseCon 2015 General Session: Zen - A Graph Data Model on HBase
PDF
HBase: Extreme Makeover
PPT
HBaseCon 2012 | Overcoming Data Deluge with HBase to Help Save the Environmen...
PPTX
HBaseCon 2015: HBase and Spark
PPTX
NoSQL: Cassadra vs. HBase
PDF
HBaseCon 2012 | Content Addressable Storages for Fun and Profit - Berk Demir,...
PDF
HBaseCon 2012 | HBase and HDFS: Past, Present, Future - Todd Lipcon, Cloudera
PPTX
HBaseCon 2013: HBase SEP - Reliable Maintenance of Auxiliary Index Structures
PPT
Real-Time Video Analytics Using Hadoop and HBase (HBaseCon 2013)
PDF
Apache HBase in the Enterprise Data Hub at Cerner
PPTX
HBase: Where Online Meets Low Latency
PDF
HBaseCon 2015: Graph Processing of Stock Market Order Flow in HBase on AWS
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
Digital Library Collection Management using HBase
HBaseCon 2013: Streaming Data into Apache HBase using Apache Flume: Experienc...
HBaseCon 2015: State of HBase Docs and How to Contribute
HBaseCon 2013:High-Throughput, Transactional Stream Processing on Apache HBase
Keynote: The Future of Apache HBase
HBaseCon 2012 | You’ve got HBase! How AOL Mail Handles Big Data
Optimizing Apache HBase for Cloud Storage in Microsoft Azure HDInsight
HBaseCon 2015 General Session: Zen - A Graph Data Model on HBase
HBase: Extreme Makeover
HBaseCon 2012 | Overcoming Data Deluge with HBase to Help Save the Environmen...
HBaseCon 2015: HBase and Spark
NoSQL: Cassadra vs. HBase
HBaseCon 2012 | Content Addressable Storages for Fun and Profit - Berk Demir,...
HBaseCon 2012 | HBase and HDFS: Past, Present, Future - Todd Lipcon, Cloudera
HBaseCon 2013: HBase SEP - Reliable Maintenance of Auxiliary Index Structures
Real-Time Video Analytics Using Hadoop and HBase (HBaseCon 2013)
Apache HBase in the Enterprise Data Hub at Cerner
HBase: Where Online Meets Low Latency
HBaseCon 2015: Graph Processing of Stock Market Order Flow in HBase on AWS
Ad

Similar to HBaseCon 2013: Using Coprocessors to Index Columns in an Elasticsearch Cluster (20)

PDF
Performance Analysis of HBASE and MONGODB
PPTX
PPTX
BDA: Introduction to HIVE, PIG and HBASE
PPTX
Hive.pptx
ODP
Big data and Blockchain in HealthIT
PPTX
Distributed Caching - Cache Unleashed
PPTX
Splice Machine Overview
PDF
What's New in Apache Hive 3.0?
PDF
What's New in Apache Hive 3.0 - Tokyo
PDF
Reference architectures shows a microservices deployed to Kubernetes
PPTX
Hive_Pig.pptx
PDF
Schema-based multi-tenant architecture using Quarkus & Hibernate-ORM.pdf
PPTX
Data for all: Empowering teams with scalable Shiny applications @ useR 2019
PDF
Microservice message routing on Kubernetes
PDF
QuerySurge Slide Deck for Big Data Testing Webinar
PDF
Robust ha solutions with proxysql
PDF
OLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AG
PPT
HBase In Action - Chapter 10 - Operations
DOCX
Soa interview questions (autosaved)
DOCX
Soa interview questions
Performance Analysis of HBASE and MONGODB
BDA: Introduction to HIVE, PIG and HBASE
Hive.pptx
Big data and Blockchain in HealthIT
Distributed Caching - Cache Unleashed
Splice Machine Overview
What's New in Apache Hive 3.0?
What's New in Apache Hive 3.0 - Tokyo
Reference architectures shows a microservices deployed to Kubernetes
Hive_Pig.pptx
Schema-based multi-tenant architecture using Quarkus & Hibernate-ORM.pdf
Data for all: Empowering teams with scalable Shiny applications @ useR 2019
Microservice message routing on Kubernetes
QuerySurge Slide Deck for Big Data Testing Webinar
Robust ha solutions with proxysql
OLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AG
HBase In Action - Chapter 10 - Operations
Soa interview questions (autosaved)
Soa interview questions
Ad

More from Cloudera, Inc. (20)

PPTX
Partner Briefing_January 25 (FINAL).pptx
PPTX
Cloudera Data Impact Awards 2021 - Finalists
PPTX
2020 Cloudera Data Impact Awards Finalists
PPTX
Edc event vienna presentation 1 oct 2019
PPTX
Machine Learning with Limited Labeled Data 4/3/19
PPTX
Data Driven With the Cloudera Modern Data Warehouse 3.19.19
PPTX
Introducing Cloudera DataFlow (CDF) 2.13.19
PPTX
Introducing Cloudera Data Science Workbench for HDP 2.12.19
PPTX
Shortening the Sales Cycle with a Modern Data Warehouse 1.30.19
PPTX
Leveraging the cloud for analytics and machine learning 1.29.19
PPTX
Modernizing the Legacy Data Warehouse – What, Why, and How 1.23.19
PPTX
Leveraging the Cloud for Big Data Analytics 12.11.18
PPTX
Modern Data Warehouse Fundamentals Part 3
PPTX
Modern Data Warehouse Fundamentals Part 2
PPTX
Modern Data Warehouse Fundamentals Part 1
PPTX
Extending Cloudera SDX beyond the Platform
PPTX
Federated Learning: ML with Privacy on the Edge 11.15.18
PPTX
Analyst Webinar: Doing a 180 on Customer 360
PPTX
Build a modern platform for anti-money laundering 9.19.18
PPTX
Introducing the data science sandbox as a service 8.30.18
Partner Briefing_January 25 (FINAL).pptx
Cloudera Data Impact Awards 2021 - Finalists
2020 Cloudera Data Impact Awards Finalists
Edc event vienna presentation 1 oct 2019
Machine Learning with Limited Labeled Data 4/3/19
Data Driven With the Cloudera Modern Data Warehouse 3.19.19
Introducing Cloudera DataFlow (CDF) 2.13.19
Introducing Cloudera Data Science Workbench for HDP 2.12.19
Shortening the Sales Cycle with a Modern Data Warehouse 1.30.19
Leveraging the cloud for analytics and machine learning 1.29.19
Modernizing the Legacy Data Warehouse – What, Why, and How 1.23.19
Leveraging the Cloud for Big Data Analytics 12.11.18
Modern Data Warehouse Fundamentals Part 3
Modern Data Warehouse Fundamentals Part 2
Modern Data Warehouse Fundamentals Part 1
Extending Cloudera SDX beyond the Platform
Federated Learning: ML with Privacy on the Edge 11.15.18
Analyst Webinar: Doing a 180 on Customer 360
Build a modern platform for anti-money laundering 9.19.18
Introducing the data science sandbox as a service 8.30.18

Recently uploaded (20)

PDF
Machine learning based COVID-19 study performance prediction
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
A Presentation on Artificial Intelligence
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPT
Teaching material agriculture food technology
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
cuic standard and advanced reporting.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
Modernizing your data center with Dell and AMD
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
Machine learning based COVID-19 study performance prediction
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Diabetes mellitus diagnosis method based random forest with bat algorithm
NewMind AI Monthly Chronicles - July 2025
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
A Presentation on Artificial Intelligence
Mobile App Security Testing_ A Comprehensive Guide.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Teaching material agriculture food technology
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Unlocking AI with Model Context Protocol (MCP)
CIFDAQ's Market Insight: SEC Turns Pro Crypto
cuic standard and advanced reporting.pdf
Electronic commerce courselecture one. Pdf
Modernizing your data center with Dell and AMD
Building Integrated photovoltaic BIPV_UPV.pdf

HBaseCon 2013: Using Coprocessors to Index Columns in an Elasticsearch Cluster

  • 1. HBase Coprocessor to Index Columns into ElasticSearch Cluster Dibyendu Bhattacharya Architect – Big Data Analytics HappiestMinds
  • 2. About HappiestMinds • Next Gen IT Consultancy Company launched Aug 2011 . Head office in Bangalore, India, have offices in USA, UK, Canada, Australia and Singapore. Core focus on disruptive technologies like Big Data/Analytics, Cloud, Mobile and Social. • Raised USD 45M Series A Funding from prominent VCs , Intel Capital, Canaan Partners and founders. • 45 + Client Globally, 800 + Employees. About Myself : Dibyendu is Big Data Architect at HappiestMinds where he is involved in architecting and developing solutions on a Hadoop-based analytics and search platform. In the past few years, he has worked on complex data analytics related projects that utilize Hadoop, HBase, and real time analytics. Before HappiestMinds, he worked at EMC, FairIsaac, Cisco, IBM etc.
  • 3. This Presentation…. …….will explores the design and challenges HappiestMinds faced while implementing a storage and search infrastructure for a library procurement system where books/documents/artifacts related records are stored in Apache HBase. Upon bulk insert of book records into HBase, the Elasticsearch index is built offline using MapReduce but there are certain use cases where the records need to be re-indexed in Elasticsearch using Region Observer Coprocessors.
  • 4. Storing and Indexing Book records from Publishers and Libraries Publisher/ Library Data HDFS HBase Cluster Data Pre Processing • Data ingestion to Hadoop Data Loading : Map Reduce • Bulk Data upload to HBase table1 2 1 2 3 Elastic Search Cluster 3 Data Indexing : Map Reduce • Incremental Data Indexing to ElasticSearch • Part of the document is indexed. User Search 4 4 User Search: • User Search Data. • Search engine display results. • Full data access request fetch from HBase. User Update data5a 5b 5 User Update: • User update HBase record. • Update will propagate to Search Cluster.
  • 7. HBase Storage Layout Region Server ………………….…….
  • 9. Here comes the Coprocessors The idea of HBase Coprocessors was inspired by Google’s Big Table coprocessors. • HBase coprocessors are an addition to data-manipulation toolset that were introduced as a feature in HBase in the 0.92.0 release. • With the introduction of coprocessors, we can push arbitrary computation out to the HBase nodes hosting data. • Coprocessors can be loaded globally on all tables and regions hosted by the region server, or the administrator can specify which coprocessors should be loaded on all regions for a table on a per-table basis.
  • 10. Coprocessors Class and Interfaces The Coprocessor Interface • All User code must inherit from this class The CoprocessorEnvironement Interface • Retain state across invocation The CoprocessorHost interfaces • Tied state and the user code
  • 11. Observer Coprocessors Two types of Coprocessor • observer, which are like triggers in conventional databases. • endpoint, dynamic RPC endpoints that resemble stored procedures. Observer Coprocessor : Callback functions/hooks for every explicit API method • MasterObserver • Hooks into HMaster API • RegionObserver • Hooks into Region related operations • WALObserver • Hooks into write-ahead log operations
  • 12. RegionObserver Coprocessor … Put ( ) RegionObserver: Provides hooks for data manipulation events, Get, Put, Delete, Scan, and so on. There is an instance of a RegionObserver coprocessor for every table region and the scope of the observations they can make is constrained to that region.
  • 14. Let us see what is ElasticSearch
  • 15. Distributed Search Engine : ElasticSearch • Distributed • Highly-available • REST based search engine (on top of Lucene) • Designed to speak JSON (JSON in, JSON out) • Built on top of Lucene. For each index you can specify: • Number of shards Each index has fixed number of shards • Number of replicas Each shard can have 0-many replicas, can be changed dynamically
  • 16. ElasticSearch : Automatic Discovery Discovery Module responsible for discovering nodes within the cluster , as well as electing master node. The responsibility of master node is to maintain global cluster state, and act if nodes join or leave cluster by reassigning shards.
  • 18. ElasticSearch : Nodes are Different
  • 19. The idea is to perform Indexing into ElasticSearch from HBase Coprocessors…..
  • 20. We need a Java Client… Use ElasticSearch Transport Client : The Transport Client connects remotely to an ElasticSearch cluster. It does not join the cluster, but simply gets one or more initial transport addresses and communicates with them in round robin fashion on each action (though most actions will probably be “two hop” operations).
  • 21. And Index with Transport Client…
  • 22. But this approach has a problem.. • Client does not have the knowledge of the ElasticSearch cluster. • Two Hop indexing. • No fault tolerant mechanism if transport address is down. • HBase Region Servers can have hundreds regions and hence hundreds of transport client. Solution • Use ElasticSearch Node Client. Client Node does not hold index but have knowledge of complete Cluster. • Use HBASE-6505 to share Node Client across Regions in a RegionServer.
  • 23. HBase 6505 RegionCoprocessorEnvironment provides a getSharedData() method, which returns a ConcurrentMap, which is held by the RegionCoprocessorHost as a weak reference (in a special map with strongly referenced keys and weakly referenced values), and held strongly by the RegionEnvironment. That way if the coprocessor is blacklisted the coprocessors environment is removed, and any shared data is immediately available for garbage collection. This shared data is per RegionServer. As long as there is at least one region observer or endpoint active this shared data is not garbage collected and can be accessed to share state between the remaining coprocessors of the same class.
  • 24. Shared Node Client across Regions
  • 25. Shared Node Client across Regions
  • 26. The Final Problem…. Concurrency Control … HBase Solve it using MVCC (Multi Version Concurrency Control): Implement updates not by deleting an old piece of data and overwriting it with a new one, but instead by making the old data as obsolete and adding newer version And ElasticSearch using OCC (Optimistic Concurrency Control) : Multiple transactions can complete without affecting each other, and that therefore transactions can proceed without locking the data resources that they affect. Before committing, each transaction verifies that no other transaction has modified its data. If the check reveals conflicting modifications, the committing transaction rolls back.
  • 27. Let See a Conflict.. Search and Update HBase ES C1 C2 V1 V1 V1(M/R) HBase ES C1 C2 V1 V1 V2 (Update success) Conflict V2(CP) V1(M/R)
  • 28. One More Conflict.. Search and Update HBase ES C1 C2 V1 V1 V1(M/R)V1(M/R) HBase ES C1 C2 V1 V1 Conflict V2(M/R) Conflict
  • 29. The bottom line is. Search and Update should only be successful when the Version of ElasticSearch and Version of HBase is same during the update.
  • 30. Solution.. 1. Data Load from Source to HBase will insert a document with Put call. 2. postPut coprocessor will perform incrementColumnValue for a version column. ……………………… ………………………
  • 31. Solution.. 3. Same Version number will be propagated to ElasticSearch during Map Reduce based bulk indexing. ElasticSearch support version number supplied externally. 4. Step 1-3 will repeat for any new data upload. 5. During search and update , the client will perform checkAndPut () call. 5i. Client perform search and get the Version number from ElasticSearch 5ii. Client construct a Put with new Version No = Old Version + 1 5iii. Client perform checkAndPut, and check for old Version number before doing Put. 5iv. postCheckAndPut Coprocessor invoked to propagate the successful Put to Search Cluster. 5v. After this step the Version Number of HBase column and ElasticSearch version will be equal.