SlideShare ist ein Scribd-Unternehmen logo
1 von 35
A very BIG data
Company
The challenge of serving
massive batch-computed
data sets on-line
The challenge of serving massive
batch-computed data sets online
David Gruzman
Serving batch-computed data
by David Gruzman
►
Today we will discuss the case
when we have multi-terabyte
dataset which is periodically
recalculated and have to be
served in the real time.
►
SimilarWeb allowed us to
reveal internals of their
Similar Web data flow – the context
►
Company assemble billions of events from their panel on the daily
basis.
►
Fast growing Hadoop cluster is used to process this data using
various kinds of statistical analysis and machine learning.
►
The data model is “web scale”. The data derived from the raw events
is processed into “top pages”,”demography”, “keywords” and many
other metrics company assemble.
►
Problem dimensionality is: Per domain, per day, per country. More
dimensions might appear.
How data is calculated
►
Data is imported into HDFS from the farm of application
servers.
►
Set of MR Jobs as well as Hive scripts is used to do
data processing.
►
Result data has a common structure of the “key-value”
where key – our dimensions or their subset. For
example
Key: “cnn.com_01012013_USA”
Value: “Top Pages: Page1, …. statistics:.... “
Abstract schema of the relevant part of
SimilarWeb IT
App
Server
s
Hadoop – Map Reduce
Hadoop – Hbase Stage
Hbase
Production
Hbase
Production
Hbase under heavy inserts
►
First of all – it do works
►
The question – what was done...
Hbase : Split storms
►
When you insert data evenly into many regions all of
them starts splitting roughly in the same time. Hbase
does not like it... It became not available, insertion job
failes, leases expired etc...
►
Solution : pre split table and disable automatic split.
►
Price : it is hard to achieve even distribution of the
data among regions. Hotspots possible...
Compaction storms
►
Under heavy load to all regions – all of them
starting minor compaction in the same time
►
Results are similar to the split storm... Nothing
good.
Inherent problem – delayed work
►
Hbase does not do ALL work required during
insert.
►
Part of the work Delayed till the compaction.
►
System who delay work is inherently
problematic for the prolonged high load.
►
It is good to work with spikes of activity, not with
steady heavy load.
Massive insert problem
►
There is a lot of overhead in randomly insert data.
►
What happens that MapReduce produce already sorted
data and Hbase is sorting it again.
►
Hbase is sorting data constantly, while MR do it in the
batch what is inherently more efficient
►
Hbase is strongly consistent system and under heavy
load all kinds of problems (leasing related) happens
Domino effect
HBase Snapshots – come to rescue
►
Snapshot is capability to get “point in time” state of the
table.
►
Technically snapshot is list of files which constitute the table.
So taking snapshot is pure meta-data operation.
►
When files are to be deleted for the table they are moved to
the archive directory.
►
Thus all operation like clone, restore – are just file renames
and metadata changes.
Hbase – snapshot export
Region
Before 1 Before 2
File after
Snapshot
Before1
In Archive
Before2
in
archive
Move / rename
Hbase – snapshot export
►
There is additional capability of snapshots –
export.
►
Technically it is like DISTCP and even not
required alive cluster on the destination side.
Only HDFS has to be operational.
►
What we gain – DISTCP speed and scalability.
►
What happens – files are copied into archive
directory. Hbase is using it's structure as a
So how snapshots help us?
►
As you remember SimilarWeb has several
Hbase clusters. One used as a company data-
warehouse and two used to serve production
►
So we prepare data on one cluster where we
have long time-outs and then move it using
snapshots to the production cluster.
So we get to the following solution
App
Serv
ers
Hadoop – Map Reduce
Hadoop – Hbase Stage
Hbase
Production
Hbase
Production
Snapshot
export
Is it ideal?
►
We effectively minimized impact on Hbase
region servers
►
But we left with Hbase high availability problem
►
Currently we have two Hbase servers to
overcome it
►
It is working but it is far from ideal HW utilization
Conceptual problem
►
In production we do not need strong consistency
and we pay for it with Partition tolerance in CAP
theorem. In practice – it is availability problem.
►
We do not need random writes and most of
Hbase is built for them
►
We actually have more complex system then we
need
BigTable vs Dynamo
►
There are two kinds of NoSQLs – built after
BigTable (Hbase, Hypertable) and after
Dynamo (Cassandra, Voldemort …)
►
BigTable – good for data warehouse. Capability
to scan data ranges is important
►
Dynamo – good for online serving since the
systems are more high-available
Evaluation process
►
We decided to do research what system better
suites need.
►
Need was formulated as “to be able to prepare
data files offline and copy them into system by
file level.”
►
In addition – high availability is a must so
systems built around consistent hashing idea
were preferred.
ElephantDB
►
https://github.com/nathanmarz/elephantdb
►
This is system created exactly for this case
►
It is capable of serving data from index prepared offline
►
It is very simple – contains about 5K lines of code
►
Main drawback – unknown... Very little known usages..
ElephantDB
►
Berkly DB java edition is used to serve local
indexes. It is common with Voldmort which also
has such option.
►
MR Job (Cascading) is used to prepare indexes.
►
Indexes cached locally by the servers in the
ring.
►
There is MR job for incremental change of data.
ElephantDB – batch read
►
Having data sitting in the DFS in a MR friendly
format enable us to do scans right there.
►
Opposite example – we usually scan Hbase
table to process it using MR. When there is no
filtering / predicate push-down it is serious
waste of resources
Elephant DB - drawbacks
►
First one – is rare use. We already mentioned it
►
It is read only. In case we also need random
writes – we will need to deploy another NoSQL.
Voldemort...
Project - Voldemort
►
NoSQL
►
Pluggable Storage engines
►
Pluggable serialization (TBD)
►
Consistent hashing
►
Eventual consistency
►
Support for batch-computed read-only stores
Voldemort logical architecture
How building data works
►
The job gets as parameter all cluster
configuration
►
Thereof it can build data specific for each node
Pull vs Push
►
It was interesting decision of the Linkedin
engineers to implement pull.
►
The explanation is that Voldemort as a system
should be able to throttle data load in order to
prevent system performance degradation.
Performance
We tested on 3 node dedicated clusters with SSD.
►
Throughput – 5-6K reads per second barely
change CPU level. Documentation tells about
20K requests per node.
►
Latency 10-15 milliseconds on not-cached data.
We are researching this number. It sounds too
much for SSD.
►
1 – 1.5 milliseconds for cached data.
Caching remarks
►
Voldemort (as well as MongoDB) is not develop
own caching mechanism but offload it to OS.
►
It is done by doing MMAP of the data files.
►
In my opinion – it is inferior approach since OS
do not have application specific statistics, add
not-needed context switches.
Voldemort summary
For:
►
Easy to install. It took 2 hours to build the cluster
even without installer..
►
Pluggable storage engines.
►
Support for efficient import of batch-computed data
►
Open Source
Against:
Method limitation
There is limit in pre-computing way when number
of dimension grow.
What we are doing – we have proprietary layer
build on LINQ and C# which makes missing
aggregation
We also evaluate Jethrodata which can do it in
SQL way.
It is RDBMS engine running on top of HDFS and
gives full index with join and group by capability
ElephantDB information used
►
http://www.slideshare.net/nathanmarz/
elephantdb
►
http://computerhelpkansascity.blogspot.co.il/2012/06
html

Weitere ähnliche Inhalte

Mehr von David Groozman

ImpalaToGo and Tachyon integration
ImpalaToGo and Tachyon integrationImpalaToGo and Tachyon integration
ImpalaToGo and Tachyon integrationDavid Groozman
 
ImpalaToGo design explained
ImpalaToGo design explainedImpalaToGo design explained
ImpalaToGo design explainedDavid Groozman
 
ImpalaToGo introduction
ImpalaToGo introductionImpalaToGo introduction
ImpalaToGo introductionDavid Groozman
 
Cloudera Impala Internals
Cloudera Impala InternalsCloudera Impala Internals
Cloudera Impala InternalsDavid Groozman
 

Mehr von David Groozman (6)

ImpalaToGo and Tachyon integration
ImpalaToGo and Tachyon integrationImpalaToGo and Tachyon integration
ImpalaToGo and Tachyon integration
 
ImpalaToGo design explained
ImpalaToGo design explainedImpalaToGo design explained
ImpalaToGo design explained
 
ImpalaToGo use case
ImpalaToGo use caseImpalaToGo use case
ImpalaToGo use case
 
Spark vstez
Spark vstezSpark vstez
Spark vstez
 
ImpalaToGo introduction
ImpalaToGo introductionImpalaToGo introduction
ImpalaToGo introduction
 
Cloudera Impala Internals
Cloudera Impala InternalsCloudera Impala Internals
Cloudera Impala Internals
 

Kürzlich hochgeladen

Delhi Call Girls Paharganj 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Paharganj 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Paharganj 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Paharganj 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxjanettecruzeiro1
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...BarusRa
 
WAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsWAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsCharles Obaleagbon
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Delhi Call girls
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptxVanshNarang19
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...kumaririma588
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja Nehwal
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfParomita Roy
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Servicearoranaina404
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdftbatkhuu1
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceanilsa9823
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call GirlsCBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girlsmodelanjalisharma4
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Delhi Call girls
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 

Kürzlich hochgeladen (20)

Delhi Call Girls Paharganj 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Paharganj 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Paharganj 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Paharganj 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptx
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
WAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsWAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past Questions
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptx
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call GirlsCBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 

The challenge of serving large amount of batch-computed data

  • 1. A very BIG data Company The challenge of serving massive batch-computed data sets on-line
  • 2. The challenge of serving massive batch-computed data sets online David Gruzman
  • 3. Serving batch-computed data by David Gruzman ► Today we will discuss the case when we have multi-terabyte dataset which is periodically recalculated and have to be served in the real time. ► SimilarWeb allowed us to reveal internals of their
  • 4. Similar Web data flow – the context ► Company assemble billions of events from their panel on the daily basis. ► Fast growing Hadoop cluster is used to process this data using various kinds of statistical analysis and machine learning. ► The data model is “web scale”. The data derived from the raw events is processed into “top pages”,”demography”, “keywords” and many other metrics company assemble. ► Problem dimensionality is: Per domain, per day, per country. More dimensions might appear.
  • 5. How data is calculated ► Data is imported into HDFS from the farm of application servers. ► Set of MR Jobs as well as Hive scripts is used to do data processing. ► Result data has a common structure of the “key-value” where key – our dimensions or their subset. For example Key: “cnn.com_01012013_USA” Value: “Top Pages: Page1, …. statistics:.... “
  • 6. Abstract schema of the relevant part of SimilarWeb IT App Server s Hadoop – Map Reduce Hadoop – Hbase Stage Hbase Production Hbase Production
  • 7. Hbase under heavy inserts ► First of all – it do works ► The question – what was done...
  • 8. Hbase : Split storms ► When you insert data evenly into many regions all of them starts splitting roughly in the same time. Hbase does not like it... It became not available, insertion job failes, leases expired etc... ► Solution : pre split table and disable automatic split. ► Price : it is hard to achieve even distribution of the data among regions. Hotspots possible...
  • 9. Compaction storms ► Under heavy load to all regions – all of them starting minor compaction in the same time ► Results are similar to the split storm... Nothing good.
  • 10. Inherent problem – delayed work ► Hbase does not do ALL work required during insert. ► Part of the work Delayed till the compaction. ► System who delay work is inherently problematic for the prolonged high load. ► It is good to work with spikes of activity, not with steady heavy load.
  • 11. Massive insert problem ► There is a lot of overhead in randomly insert data. ► What happens that MapReduce produce already sorted data and Hbase is sorting it again. ► Hbase is sorting data constantly, while MR do it in the batch what is inherently more efficient ► Hbase is strongly consistent system and under heavy load all kinds of problems (leasing related) happens
  • 13. HBase Snapshots – come to rescue ► Snapshot is capability to get “point in time” state of the table. ► Technically snapshot is list of files which constitute the table. So taking snapshot is pure meta-data operation. ► When files are to be deleted for the table they are moved to the archive directory. ► Thus all operation like clone, restore – are just file renames and metadata changes.
  • 14. Hbase – snapshot export Region Before 1 Before 2 File after Snapshot Before1 In Archive Before2 in archive Move / rename
  • 15. Hbase – snapshot export ► There is additional capability of snapshots – export. ► Technically it is like DISTCP and even not required alive cluster on the destination side. Only HDFS has to be operational. ► What we gain – DISTCP speed and scalability. ► What happens – files are copied into archive directory. Hbase is using it's structure as a
  • 16. So how snapshots help us? ► As you remember SimilarWeb has several Hbase clusters. One used as a company data- warehouse and two used to serve production ► So we prepare data on one cluster where we have long time-outs and then move it using snapshots to the production cluster.
  • 17. So we get to the following solution App Serv ers Hadoop – Map Reduce Hadoop – Hbase Stage Hbase Production Hbase Production Snapshot export
  • 18. Is it ideal? ► We effectively minimized impact on Hbase region servers ► But we left with Hbase high availability problem ► Currently we have two Hbase servers to overcome it ► It is working but it is far from ideal HW utilization
  • 19. Conceptual problem ► In production we do not need strong consistency and we pay for it with Partition tolerance in CAP theorem. In practice – it is availability problem. ► We do not need random writes and most of Hbase is built for them ► We actually have more complex system then we need
  • 20. BigTable vs Dynamo ► There are two kinds of NoSQLs – built after BigTable (Hbase, Hypertable) and after Dynamo (Cassandra, Voldemort …) ► BigTable – good for data warehouse. Capability to scan data ranges is important ► Dynamo – good for online serving since the systems are more high-available
  • 21. Evaluation process ► We decided to do research what system better suites need. ► Need was formulated as “to be able to prepare data files offline and copy them into system by file level.” ► In addition – high availability is a must so systems built around consistent hashing idea were preferred.
  • 22. ElephantDB ► https://github.com/nathanmarz/elephantdb ► This is system created exactly for this case ► It is capable of serving data from index prepared offline ► It is very simple – contains about 5K lines of code ► Main drawback – unknown... Very little known usages..
  • 23. ElephantDB ► Berkly DB java edition is used to serve local indexes. It is common with Voldmort which also has such option. ► MR Job (Cascading) is used to prepare indexes. ► Indexes cached locally by the servers in the ring. ► There is MR job for incremental change of data.
  • 24. ElephantDB – batch read ► Having data sitting in the DFS in a MR friendly format enable us to do scans right there. ► Opposite example – we usually scan Hbase table to process it using MR. When there is no filtering / predicate push-down it is serious waste of resources
  • 25. Elephant DB - drawbacks ► First one – is rare use. We already mentioned it ► It is read only. In case we also need random writes – we will need to deploy another NoSQL.
  • 27. Project - Voldemort ► NoSQL ► Pluggable Storage engines ► Pluggable serialization (TBD) ► Consistent hashing ► Eventual consistency ► Support for batch-computed read-only stores
  • 29. How building data works ► The job gets as parameter all cluster configuration ► Thereof it can build data specific for each node
  • 30. Pull vs Push ► It was interesting decision of the Linkedin engineers to implement pull. ► The explanation is that Voldemort as a system should be able to throttle data load in order to prevent system performance degradation.
  • 31. Performance We tested on 3 node dedicated clusters with SSD. ► Throughput – 5-6K reads per second barely change CPU level. Documentation tells about 20K requests per node. ► Latency 10-15 milliseconds on not-cached data. We are researching this number. It sounds too much for SSD. ► 1 – 1.5 milliseconds for cached data.
  • 32. Caching remarks ► Voldemort (as well as MongoDB) is not develop own caching mechanism but offload it to OS. ► It is done by doing MMAP of the data files. ► In my opinion – it is inferior approach since OS do not have application specific statistics, add not-needed context switches.
  • 33. Voldemort summary For: ► Easy to install. It took 2 hours to build the cluster even without installer.. ► Pluggable storage engines. ► Support for efficient import of batch-computed data ► Open Source Against:
  • 34. Method limitation There is limit in pre-computing way when number of dimension grow. What we are doing – we have proprietary layer build on LINQ and C# which makes missing aggregation We also evaluate Jethrodata which can do it in SQL way. It is RDBMS engine running on top of HDFS and gives full index with join and group by capability