Cross-Site BigTable using HBase

HBaseCon
HBase Cross-site BigTable
Security Features
in Apache HBase –
An Operator’s
Guide
Cross-Site Big Table using HBase
Anoop Sam John, Du Jingcheng, Ramkrishna S. Vasudevan
Big Data US Research And Development, Intel
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Motivation
Motivation
• Growing demands for storing the data across geographically
distributed data centers.
– Data and data pattern is similar across data centers.
– But the data is private to each of the data center.
• Improve the data availability and disaster recovery.
• An easy way to access these distributed data.
• Manage the hierarchy relationship between data centers. (Grouping of
data centers)
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Use Case
Intelligent Transportation System
• Monitors traffic movements, traffic patterns etc. in every city.
• Data in every data center is private and holds traffic pattern of that city
• Hierarchy of departments - National Transportation Department/State
Transportation Department/City Transportation Department
• National/State Transportation Department – Virtual node
• Helps to aggregate results/statistics over all the data centers.
• Easy access and single point of view of all the data centers.
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Agenda
Agenda
• Goals of CSBT[1]
• Architecture of CSBT
– Highly Available Global Zookeeper Quorum
– Cross-Site Metadata in Global Zookeeper
– Cluster Locator
– Hierarchy
• Admin Operations on CSBT
• Read/Write operations on CrossSiteHTable
• Data Replication and FailOver
• Future Improvements
[1] – CSBT refers to Cross-Site Big Table
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Goals
Goals
• A global view for tables across different data centers.
• Define and manage the hierarchy relationship between data centers
and data.
• High availability
• Locality – In terms of geography
– Each data center holds its own data.
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Architecture
Architecture
CSBTCSBT
Architecture
• An across data center dedicated, distributed zookeeper quorum –
Global Zookeeper
• Table partitioning
– Each data center holds a specific partition of the table
– Every partition of the Cross-site HTable is an HTable itself, bearing a
table name “<tableName>_<clustername>”
– The partitioning rule is set by user at table creation time using
Cluster Locators.
• Supports all admin and table operations as supported on the HTable.
Apache ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services (Source :
http://zookeeper.apache.org/)
Architecture
• Data center relationship
– Allows each data center to configure its peer data center (for
replication and failover in read)
• Peers for a cluster could be nodes in another cluster also.
• Master-Master, Master-slave replication etc.
– Uses Asynchronous Replication of Apache HBase
• Asynchronously writes the WAL entries to the configured peers
– Could define hierarchy for the data centers
Highly Available Global Zookeeper Quorum
• Dedicated Zookeeper cluster.
• Split the Zookeeper quorum across data centers.
• Recommended not to use the zookeeper cluster used by the individualHBase setups.
• Leverage the Zookeeper Observer
– Do not impact the Zookeeper write performance
– Configure in such a way that ‘reads’ are served locally
– Configure the Zookeeper quorum as
<local observers>,<leader/followers>,<observers in other DCs>
Observers are non-voting members of an ensemble which only hear the results of votes
Observers may be used to talk to an Apache ZooKeeper server from another data center
Clients of the Observer will see fast reads, as all reads are served locally, and writes result in minimal network traffic as the number of messages required in the absence of
the vote protocol is smaller (Source : http://zookeeper.apache.org/)
Cross-Site Metadata in Global Zookeeper
CrossSite
clusters
tables
address
hierarchy
state
splitkeys
desc
proposed_desc
peerscluster1
cluster2
cluster3
table1
table2
table3
locator
Cluster Locator
• Sets data partition logic/rule.
• Helps to locate a specific cluster based on the row key.
• Users are allowed to create their own cluster locators
– PrefixClusterLocator – <clustername>,<row>
where “,” is the delimiter
– SuffixClusterLocator – <row>,<xxx>,<yyy>,<clustername>
where “,” is the delimiter and cluster name is always the string that
appears after the occurrence of the last delimiter.
• Note that its up to the user to specify the cluster name in the row key while
doing ‘puts’ based on the cluster locator configured while table creation.
Hierarchy
Hierarchy
• Could define the parent-child relationship for clusters
• The node in the hierarchy could be either a physical cluster, or a virtual
one. A virtual node may represent a logical grouping of a set of
physical clusters
• The hierarchy is used while ‘scan’ing
– If a parent node is specified, all its descendants are also counted
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Admin operations on Cross-site BigTable
Admin Operations
• Operation performed using CrossSiteHBaseAdmin
• Extends HBaseAdmin.
Create Peers
• Specifying peers creates the
peers under the ‘peers’ node
• Address of each peer is written
as data in the peer znodes
peers cluster2
cluster3
cluster4
cluster1
Create Table
Cluster a01
Table:
T1_a01
Cluster a02
Table:
T1_a02
Peer1
Table:
T1_a01
(backup)
CSBTAdmin Global ZK
Cluster a01->Peer1
Cluster a02->Peer2
Peer2
Table:
T1_a02
(backup)
1. Create the table znode in
ZK
4. Writes the table related data in
table’s znode and updates the state
in zk
2. Create tables in clusters
3. Create table in peers if any
Disable Table
Cluster a01
Table:
T1_a01
Cluster a02
Table:
T1_a02
Peer1
Table:
T1_a01
(backup)
CSBTAdmin Global ZK
Cluster a01->Peer1
Cluster a02->Peer2
Peer2
Table:
T1_a02
(backup)
1. Update the state to
DISABLING
3. Update the state to
DISABLED
2. Disable tables in clusters
• Do NOT disable the tables in the peers - As it is asynchronous replication, disabling peer may stop
the entire replication. There may be some unfinished WALs from getting replicated
Enable Table
Cluster a01
Table:
T1_a01
Cluster a02
Table:
T1_a02
Peer1
Table:
T1_a01
(backup)
CSBTAdmin Global ZK
Cluster a01->Peer1
Cluster a02->Peer2
Peer2
Table:
T1_a02
(backup)
1. Update the state to
ENABLING
4. Update the state to
ENABLED
2. Enable tables in clusters
3. Handle TableNotDisabledException
as Peers already ENABLED
Alter Schema
Cluster a01
Table:
T1_a01
Cluster a02
Table:
T1_a02
Peer1
Table:
T1_a01
(backup)
CSBTAdmin Global ZK
Cluster a01->Peer1
Cluster a02->Peer2
Peer2
Table:
T1_a02
(backup)
1. Write the new HTD to PROPOSED_DESC
znode
3. Update the table’s HTD znode
4. Update table state to DISABLED
5. Delete the PROPOSED_DESC
znode
3. Alter schema in clusters
4. Add/Modify column in peers by
DISABLING. ENABLE after completion. If
table not present create the table with the
new HTD.
2. Update the state to MODIFYING/ADDING xxx
state
Delete Table
Cluster a01
Table:
T1_a01
Cluster a02
Table:
T1_a02
Peer1
Table:
T1_a01
(backup)
CSBTAdmin Global ZK
Cluster a01->Peer1
Cluster a02->Peer2
Peer2
Table:
T1_a02
(backup)
1. Update the state to
DELETING
4. Remove the table from the zk
2. Delete tables in clusters
3. Disable and Delete the tables from the
peer
Failure handling
• Failures are handled for the create/enable/disable/delete table by
using ZK states. Any failure the entire operation has to be retried.
• A tool that helps to deduce and auto-correct inconsistencies in the
CSBT cluster in terms of table state.
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Read/Write operations on CrossSiteHTable
Operations using CrossSiteHTable
• Operations like put/get/scan/delete performed using CrossSiteHTable
• Extends HTable
Get/Put/Delete
• Get/Put/Delete “a01, row1” from table T1
Cluster a01
Table:
T1_a01
Cluster a02
Table:
T1_a02
CSBTHTable
Global ZK
1. retrieve cluster locator for
table “T1”(cached)
2. map “a01,row1” to cluster “a01”
3. find address for cluster
“a01” (cached)
4. do get/put/delete(“a01,row1”)
on table “T1_a01” from cluster
“a01”
Scan with Start/Stop row
• New scan APIs added where cluster names could be passed while creating scans
• Scan from table T1 [ start – “row1”, end – “row6” ] , clusters-[cluster a01, cluster a02]
Cluster a01
Table:
T1_a01
CSBTHTable
Global ZK
1. retrieve cluster info for
table “T1”(cached)
2. find address for cluster
“a01” and “a02” (cached)
3. scan from(“a01,row1”) to
(“a01,row6) on table “T1_a01”
from cluster “a01”
4. scan from(“a02,row1”) to
(“a02,row6) on table “T1_a02”
from cluster “a02”
Cluster a02
Table:
T1_a02
Cluster a03
Table:
T1_a03
Scan with Hierarchy
Scan from table T1 [ start – “row1”, end – “row6” ] , clusters-
[California]
California – virtual node
SFO, LA, San Diego – physical nodes
Scan
• Uses a merge sort iterator to merge the results from different clusters
Client
Merge(sort) Iterator
Cluster A Cluster B Cluster Zall clusters …
Operations on CSBT
• The admin operations have shell and thrift support.
• Also supports MapReduce for operations on CrossSiteBigTable.
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Data Replication and FailOver
Data Center Relationship
• Allows data centers to add peers
• Apache HBase replication
– Asynchronous data replication
– Customized replication sink for CSBT
• Read-only failover
– Automatically redirects the read to the peer center
• Existing data not getting replicated for dynamic peer addition.
Data Replication
Cluster “a01”
Table:
T1_a01
Table:
T1_a02’
(backup)
Cluster “a02”
Table:
T1_a03’
(backup)
Table:
T1_a02
Cluster “a03”
Table:
T1_a01’
(backup)
Table:
T1_a03
CSBTHTable
replicate
replicate
replicate
put
put
put
Read-only Failover
Cluster “a01”
Table:
T1_a01
Table:
T1_a02’
(backup)
Cluster “a02”
Table:
T1_a03’
(backup)
Table:
T1_a02
Cluster “a03”
Table:
T1_a01’
(backup)
Table:
T1_a03
CSBTHTable
failover to
backup DC
get/scan
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Future improvements
Future improvements
• Security – CSBT security and how user/group authentications interact
• MR improvement
• Full fledged CSBT HBCK.
Currently the MR tasks runs in one cluster and all the result computation happens in one cluster.
We could improve this by dispatching the task to each cluster and then collect the results from them.
Partitioning Rule
• A rule to parse row keys, help to map records to
different clusters. ClusterLocator provides this facility
which is recorded in the central ZK
– PrefixClusterLocator
– SuffixClusterLocator
– …
• An example of PrefixClusterLocator
– If a row key is “clusterA,rowKey1”, then this record belongs
to clusterA
Q & A
1 of 41

Recommended

HBaseCon 2012 | HBase Coprocessors – Deploy Shared Functionality Directly on ... by
HBaseCon 2012 | HBase Coprocessors – Deploy Shared Functionality Directly on ...HBaseCon 2012 | HBase Coprocessors – Deploy Shared Functionality Directly on ...
HBaseCon 2012 | HBase Coprocessors – Deploy Shared Functionality Directly on ...Cloudera, Inc.
7.3K views50 slides
HBaseCon 2015: HBase Performance Tuning @ Salesforce by
HBaseCon 2015: HBase Performance Tuning @ SalesforceHBaseCon 2015: HBase Performance Tuning @ Salesforce
HBaseCon 2015: HBase Performance Tuning @ SalesforceHBaseCon
6.1K views54 slides
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ... by
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...HBaseCon
4.3K views35 slides
The State of HBase Replication by
The State of HBase ReplicationThe State of HBase Replication
The State of HBase ReplicationHBaseCon
9.1K views68 slides
HBaseCon 2013: How to Get the MTTR Below 1 Minute and More by
HBaseCon 2013: How to Get the MTTR Below 1 Minute and MoreHBaseCon 2013: How to Get the MTTR Below 1 Minute and More
HBaseCon 2013: How to Get the MTTR Below 1 Minute and MoreCloudera, Inc.
5K views35 slides
HBase and HDFS: Understanding FileSystem Usage in HBase by
HBase and HDFS: Understanding FileSystem Usage in HBaseHBase and HDFS: Understanding FileSystem Usage in HBase
HBase and HDFS: Understanding FileSystem Usage in HBaseenissoz
74K views33 slides

More Related Content

What's hot

HBase: Extreme Makeover by
HBase: Extreme MakeoverHBase: Extreme Makeover
HBase: Extreme MakeoverHBaseCon
3.3K views67 slides
HBaseCon 2012 | HBase Filtering - Lars George, Cloudera by
HBaseCon 2012 | HBase Filtering - Lars George, ClouderaHBaseCon 2012 | HBase Filtering - Lars George, Cloudera
HBaseCon 2012 | HBase Filtering - Lars George, ClouderaCloudera, Inc.
6.7K views41 slides
HBase: Where Online Meets Low Latency by
HBase: Where Online Meets Low LatencyHBase: Where Online Meets Low Latency
HBase: Where Online Meets Low LatencyHBaseCon
4.7K views42 slides
HBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket by
HBaseCon 2012 | Solbase - Kyungseog Oh, PhotobucketHBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket
HBaseCon 2012 | Solbase - Kyungseog Oh, PhotobucketCloudera, Inc.
3.6K views18 slides
HBase Read High Availability Using Timeline Consistent Region Replicas by
HBase  Read High Availability Using Timeline Consistent Region ReplicasHBase  Read High Availability Using Timeline Consistent Region Replicas
HBase Read High Availability Using Timeline Consistent Region Replicasenissoz
8.7K views38 slides
HBaseCon 2012 | Learning HBase Internals - Lars Hofhansl, Salesforce by
HBaseCon 2012 | Learning HBase Internals - Lars Hofhansl, SalesforceHBaseCon 2012 | Learning HBase Internals - Lars Hofhansl, Salesforce
HBaseCon 2012 | Learning HBase Internals - Lars Hofhansl, SalesforceCloudera, Inc.
9.5K views53 slides

What's hot(18)

HBase: Extreme Makeover by HBaseCon
HBase: Extreme MakeoverHBase: Extreme Makeover
HBase: Extreme Makeover
HBaseCon3.3K views
HBaseCon 2012 | HBase Filtering - Lars George, Cloudera by Cloudera, Inc.
HBaseCon 2012 | HBase Filtering - Lars George, ClouderaHBaseCon 2012 | HBase Filtering - Lars George, Cloudera
HBaseCon 2012 | HBase Filtering - Lars George, Cloudera
Cloudera, Inc.6.7K views
HBase: Where Online Meets Low Latency by HBaseCon
HBase: Where Online Meets Low LatencyHBase: Where Online Meets Low Latency
HBase: Where Online Meets Low Latency
HBaseCon4.7K views
HBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket by Cloudera, Inc.
HBaseCon 2012 | Solbase - Kyungseog Oh, PhotobucketHBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket
HBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket
Cloudera, Inc.3.6K views
HBase Read High Availability Using Timeline Consistent Region Replicas by enissoz
HBase  Read High Availability Using Timeline Consistent Region ReplicasHBase  Read High Availability Using Timeline Consistent Region Replicas
HBase Read High Availability Using Timeline Consistent Region Replicas
enissoz8.7K views
HBaseCon 2012 | Learning HBase Internals - Lars Hofhansl, Salesforce by Cloudera, Inc.
HBaseCon 2012 | Learning HBase Internals - Lars Hofhansl, SalesforceHBaseCon 2012 | Learning HBase Internals - Lars Hofhansl, Salesforce
HBaseCon 2012 | Learning HBase Internals - Lars Hofhansl, Salesforce
Cloudera, Inc.9.5K views
Meet HBase 1.0 by enissoz
Meet HBase 1.0Meet HBase 1.0
Meet HBase 1.0
enissoz8.2K views
HBaseCon 2015: HBase Operations at Xiaomi by HBaseCon
HBaseCon 2015: HBase Operations at XiaomiHBaseCon 2015: HBase Operations at Xiaomi
HBaseCon 2015: HBase Operations at Xiaomi
HBaseCon4.5K views
Meet hbase 2.0 by enissoz
Meet hbase 2.0Meet hbase 2.0
Meet hbase 2.0
enissoz5.3K views
HBase 0.20.0 Performance Evaluation by Schubert Zhang
HBase 0.20.0 Performance EvaluationHBase 0.20.0 Performance Evaluation
HBase 0.20.0 Performance Evaluation
Schubert Zhang3.8K views
Digital Library Collection Management using HBase by HBaseCon
Digital Library Collection Management using HBaseDigital Library Collection Management using HBase
Digital Library Collection Management using HBase
HBaseCon3.1K views
HBaseCon 2013: Apache HBase Table Snapshots by Cloudera, Inc.
HBaseCon 2013: Apache HBase Table SnapshotsHBaseCon 2013: Apache HBase Table Snapshots
HBaseCon 2013: Apache HBase Table Snapshots
Cloudera, Inc.11.8K views
HBaseCon 2015: Elastic HBase on Mesos by HBaseCon
HBaseCon 2015: Elastic HBase on MesosHBaseCon 2015: Elastic HBase on Mesos
HBaseCon 2015: Elastic HBase on Mesos
HBaseCon3.1K views
Hadoop World 2011: Advanced HBase Schema Design - Lars George, Cloudera by Cloudera, Inc.
Hadoop World 2011: Advanced HBase Schema Design - Lars George, ClouderaHadoop World 2011: Advanced HBase Schema Design - Lars George, Cloudera
Hadoop World 2011: Advanced HBase Schema Design - Lars George, Cloudera
Cloudera, Inc.8.8K views
HBaseCon 2012 | HBase and HDFS: Past, Present, Future - Todd Lipcon, Cloudera by Cloudera, Inc.
HBaseCon 2012 | HBase and HDFS: Past, Present, Future - Todd Lipcon, ClouderaHBaseCon 2012 | HBase and HDFS: Past, Present, Future - Todd Lipcon, Cloudera
HBaseCon 2012 | HBase and HDFS: Past, Present, Future - Todd Lipcon, Cloudera
Cloudera, Inc.5.5K views
Apache HBase Performance Tuning by Lars Hofhansl
Apache HBase Performance TuningApache HBase Performance Tuning
Apache HBase Performance Tuning
Lars Hofhansl39.6K views
State of HBase: Meet the Release Managers by HBaseCon
State of HBase: Meet the Release ManagersState of HBase: Meet the Release Managers
State of HBase: Meet the Release Managers
HBaseCon3.1K views

Viewers also liked

HBaseCon 2013: Being Smarter Than the Smart Meter by
HBaseCon 2013: Being Smarter Than the Smart MeterHBaseCon 2013: Being Smarter Than the Smart Meter
HBaseCon 2013: Being Smarter Than the Smart MeterCloudera, Inc.
4.3K views20 slides
HBaseCon 2012 | Relaxed Transactions for HBase - Francis Liu, Yahoo! by
HBaseCon 2012 | Relaxed Transactions for HBase - Francis Liu, Yahoo!HBaseCon 2012 | Relaxed Transactions for HBase - Francis Liu, Yahoo!
HBaseCon 2012 | Relaxed Transactions for HBase - Francis Liu, Yahoo!Cloudera, Inc.
3.2K views24 slides
HBaseCon 2012 | Building Mobile Infrastructure with HBase by
HBaseCon 2012 | Building Mobile Infrastructure with HBaseHBaseCon 2012 | Building Mobile Infrastructure with HBase
HBaseCon 2012 | Building Mobile Infrastructure with HBaseCloudera, Inc.
2.6K views36 slides
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase by
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBaseHBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBaseCloudera, Inc.
3.2K views21 slides
Tales from the Cloudera Field by
Tales from the Cloudera FieldTales from the Cloudera Field
Tales from the Cloudera FieldHBaseCon
4K views38 slides
HBaseCon 2013: Apache Hadoop and Apache HBase for Real-Time Video Analytics by
HBaseCon 2013: Apache Hadoop and Apache HBase for Real-Time Video Analytics HBaseCon 2013: Apache Hadoop and Apache HBase for Real-Time Video Analytics
HBaseCon 2013: Apache Hadoop and Apache HBase for Real-Time Video Analytics Cloudera, Inc.
4.8K views14 slides

Viewers also liked(20)

HBaseCon 2013: Being Smarter Than the Smart Meter by Cloudera, Inc.
HBaseCon 2013: Being Smarter Than the Smart MeterHBaseCon 2013: Being Smarter Than the Smart Meter
HBaseCon 2013: Being Smarter Than the Smart Meter
Cloudera, Inc.4.3K views
HBaseCon 2012 | Relaxed Transactions for HBase - Francis Liu, Yahoo! by Cloudera, Inc.
HBaseCon 2012 | Relaxed Transactions for HBase - Francis Liu, Yahoo!HBaseCon 2012 | Relaxed Transactions for HBase - Francis Liu, Yahoo!
HBaseCon 2012 | Relaxed Transactions for HBase - Francis Liu, Yahoo!
Cloudera, Inc.3.2K views
HBaseCon 2012 | Building Mobile Infrastructure with HBase by Cloudera, Inc.
HBaseCon 2012 | Building Mobile Infrastructure with HBaseHBaseCon 2012 | Building Mobile Infrastructure with HBase
HBaseCon 2012 | Building Mobile Infrastructure with HBase
Cloudera, Inc.2.6K views
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase by Cloudera, Inc.
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBaseHBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
Cloudera, Inc.3.2K views
Tales from the Cloudera Field by HBaseCon
Tales from the Cloudera FieldTales from the Cloudera Field
Tales from the Cloudera Field
HBaseCon4K views
HBaseCon 2013: Apache Hadoop and Apache HBase for Real-Time Video Analytics by Cloudera, Inc.
HBaseCon 2013: Apache Hadoop and Apache HBase for Real-Time Video Analytics HBaseCon 2013: Apache Hadoop and Apache HBase for Real-Time Video Analytics
HBaseCon 2013: Apache Hadoop and Apache HBase for Real-Time Video Analytics
Cloudera, Inc.4.8K views
HBaseCon 2013: 1500 JIRAs in 20 Minutes by Cloudera, Inc.
HBaseCon 2013: 1500 JIRAs in 20 MinutesHBaseCon 2013: 1500 JIRAs in 20 Minutes
HBaseCon 2013: 1500 JIRAs in 20 Minutes
Cloudera, Inc.4.1K views
HBaseCon 2012 | Scaling GIS In Three Acts by Cloudera, Inc.
HBaseCon 2012 | Scaling GIS In Three ActsHBaseCon 2012 | Scaling GIS In Three Acts
HBaseCon 2012 | Scaling GIS In Three Acts
Cloudera, Inc.3.6K views
HBaseCon 2013: Rebuilding for Scale on Apache HBase by Cloudera, Inc.
HBaseCon 2013: Rebuilding for Scale on Apache HBaseHBaseCon 2013: Rebuilding for Scale on Apache HBase
HBaseCon 2013: Rebuilding for Scale on Apache HBase
Cloudera, Inc.3.9K views
HBaseCon 2013: Evolving a First-Generation Apache HBase Deployment to Second... by Cloudera, Inc.
HBaseCon 2013:  Evolving a First-Generation Apache HBase Deployment to Second...HBaseCon 2013:  Evolving a First-Generation Apache HBase Deployment to Second...
HBaseCon 2013: Evolving a First-Generation Apache HBase Deployment to Second...
Cloudera, Inc.4.2K views
HBaseCon 2013: Apache HBase on Flash by Cloudera, Inc.
HBaseCon 2013: Apache HBase on FlashHBaseCon 2013: Apache HBase on Flash
HBaseCon 2013: Apache HBase on Flash
Cloudera, Inc.4.3K views
HBaseCon 2013: Apache HBase, Meet Ops. Ops, Meet Apache HBase. by Cloudera, Inc.
HBaseCon 2013: Apache HBase, Meet Ops. Ops, Meet Apache HBase.HBaseCon 2013: Apache HBase, Meet Ops. Ops, Meet Apache HBase.
HBaseCon 2013: Apache HBase, Meet Ops. Ops, Meet Apache HBase.
Cloudera, Inc.7.1K views
HBaseCon 2015: Trafodion - Integrating Operational SQL into HBase by HBaseCon
HBaseCon 2015: Trafodion - Integrating Operational SQL into HBaseHBaseCon 2015: Trafodion - Integrating Operational SQL into HBase
HBaseCon 2015: Trafodion - Integrating Operational SQL into HBase
HBaseCon3.3K views
HBaseCon 2012 | Living Data: Applying Adaptable Schemas to HBase - Aaron Kimb... by Cloudera, Inc.
HBaseCon 2012 | Living Data: Applying Adaptable Schemas to HBase - Aaron Kimb...HBaseCon 2012 | Living Data: Applying Adaptable Schemas to HBase - Aaron Kimb...
HBaseCon 2012 | Living Data: Applying Adaptable Schemas to HBase - Aaron Kimb...
Cloudera, Inc.3.2K views
HBase Read High Availability Using Timeline-Consistent Region Replicas by HBaseCon
HBase Read High Availability Using Timeline-Consistent Region ReplicasHBase Read High Availability Using Timeline-Consistent Region Replicas
HBase Read High Availability Using Timeline-Consistent Region Replicas
HBaseCon4.1K views
HBaseCon 2012 | Content Addressable Storages for Fun and Profit - Berk Demir,... by Cloudera, Inc.
HBaseCon 2012 | Content Addressable Storages for Fun and Profit - Berk Demir,...HBaseCon 2012 | Content Addressable Storages for Fun and Profit - Berk Demir,...
HBaseCon 2012 | Content Addressable Storages for Fun and Profit - Berk Demir,...
Cloudera, Inc.3.8K views
HBaseCon 2012 | Unique Sets on HBase and Hadoop - Elliot Clark, StumbleUpon by Cloudera, Inc.
HBaseCon 2012 | Unique Sets on HBase and Hadoop - Elliot Clark, StumbleUponHBaseCon 2012 | Unique Sets on HBase and Hadoop - Elliot Clark, StumbleUpon
HBaseCon 2012 | Unique Sets on HBase and Hadoop - Elliot Clark, StumbleUpon
Cloudera, Inc.3.4K views
HBaseCon 2015: DeathStar - Easy, Dynamic, Multi-tenant HBase via YARN by HBaseCon
HBaseCon 2015: DeathStar - Easy, Dynamic,  Multi-tenant HBase via YARNHBaseCon 2015: DeathStar - Easy, Dynamic,  Multi-tenant HBase via YARN
HBaseCon 2015: DeathStar - Easy, Dynamic, Multi-tenant HBase via YARN
HBaseCon2.9K views
HBaseCon 2012 | HBase for the Worlds Libraries - OCLC by Cloudera, Inc.
HBaseCon 2012 | HBase for the Worlds Libraries - OCLCHBaseCon 2012 | HBase for the Worlds Libraries - OCLC
HBaseCon 2012 | HBase for the Worlds Libraries - OCLC
Cloudera, Inc.3.9K views
HBaseCon 2012 | Leveraging HBase for the World’s Largest Curated Genomic Data... by Cloudera, Inc.
HBaseCon 2012 | Leveraging HBase for the World’s Largest Curated Genomic Data...HBaseCon 2012 | Leveraging HBase for the World’s Largest Curated Genomic Data...
HBaseCon 2012 | Leveraging HBase for the World’s Largest Curated Genomic Data...
Cloudera, Inc.3.5K views

Similar to Cross-Site BigTable using HBase

Cassandra 2.1 boot camp, Read/Write path by
Cassandra 2.1 boot camp, Read/Write pathCassandra 2.1 boot camp, Read/Write path
Cassandra 2.1 boot camp, Read/Write pathJoshua McKenzie
6.4K views49 slides
Cassandra - A decentralized storage system by
Cassandra - A decentralized storage systemCassandra - A decentralized storage system
Cassandra - A decentralized storage systemArunit Gupta
1.2K views85 slides
Talk about apache cassandra, TWJUG 2011 by
Talk about apache cassandra, TWJUG 2011Talk about apache cassandra, TWJUG 2011
Talk about apache cassandra, TWJUG 2011Boris Yen
659 views31 slides
Talk About Apache Cassandra by
Talk About Apache CassandraTalk About Apache Cassandra
Talk About Apache CassandraJacky Chu
3.3K views31 slides
Introducing Oxia: A Scalable Zookeeper Alternative by
Introducing Oxia: A Scalable Zookeeper AlternativeIntroducing Oxia: A Scalable Zookeeper Alternative
Introducing Oxia: A Scalable Zookeeper AlternativeHostedbyConfluent
33 views19 slides
Galera explained 3 by
Galera explained 3Galera explained 3
Galera explained 3Marco Tusa
4.6K views63 slides

Similar to Cross-Site BigTable using HBase(20)

Cassandra 2.1 boot camp, Read/Write path by Joshua McKenzie
Cassandra 2.1 boot camp, Read/Write pathCassandra 2.1 boot camp, Read/Write path
Cassandra 2.1 boot camp, Read/Write path
Joshua McKenzie6.4K views
Cassandra - A decentralized storage system by Arunit Gupta
Cassandra - A decentralized storage systemCassandra - A decentralized storage system
Cassandra - A decentralized storage system
Arunit Gupta1.2K views
Talk about apache cassandra, TWJUG 2011 by Boris Yen
Talk about apache cassandra, TWJUG 2011Talk about apache cassandra, TWJUG 2011
Talk about apache cassandra, TWJUG 2011
Boris Yen659 views
Talk About Apache Cassandra by Jacky Chu
Talk About Apache CassandraTalk About Apache Cassandra
Talk About Apache Cassandra
Jacky Chu3.3K views
Introducing Oxia: A Scalable Zookeeper Alternative by HostedbyConfluent
Introducing Oxia: A Scalable Zookeeper AlternativeIntroducing Oxia: A Scalable Zookeeper Alternative
Introducing Oxia: A Scalable Zookeeper Alternative
Galera explained 3 by Marco Tusa
Galera explained 3Galera explained 3
Galera explained 3
Marco Tusa4.6K views
London + Dublin Cassandra 2.0 by jbellis
London + Dublin Cassandra 2.0London + Dublin Cassandra 2.0
London + Dublin Cassandra 2.0
jbellis3.5K views
Cassandra by exsuns
CassandraCassandra
Cassandra
exsuns1.5K views
Elasticsearch Data Analyses by Alaa Elhadba
Elasticsearch Data AnalysesElasticsearch Data Analyses
Elasticsearch Data Analyses
Alaa Elhadba1K views
My sql technical reference manual by Mir Majid
My sql technical reference manualMy sql technical reference manual
My sql technical reference manual
Mir Majid 1.1K views
Introduction To Maxtable by maxtable
Introduction To MaxtableIntroduction To Maxtable
Introduction To Maxtable
maxtable449 views
Cassandra for Sysadmins by Nathan Milford
Cassandra for SysadminsCassandra for Sysadmins
Cassandra for Sysadmins
Nathan Milford26.6K views
MemSQL 201: Advanced Tips and Tricks Webcast by SingleStore
MemSQL 201: Advanced Tips and Tricks WebcastMemSQL 201: Advanced Tips and Tricks Webcast
MemSQL 201: Advanced Tips and Tricks Webcast
SingleStore2.1K views
Cassandra - Research Paper Overview by sameiralk
Cassandra - Research Paper OverviewCassandra - Research Paper Overview
Cassandra - Research Paper Overview
sameiralk4.1K views

More from HBaseCon

hbaseconasia2017: Building online HBase cluster of Zhihu based on Kubernetes by
hbaseconasia2017: Building online HBase cluster of Zhihu based on Kuberneteshbaseconasia2017: Building online HBase cluster of Zhihu based on Kubernetes
hbaseconasia2017: Building online HBase cluster of Zhihu based on KubernetesHBaseCon
3.9K views36 slides
hbaseconasia2017: HBase on Beam by
hbaseconasia2017: HBase on Beamhbaseconasia2017: HBase on Beam
hbaseconasia2017: HBase on BeamHBaseCon
1.3K views26 slides
hbaseconasia2017: HBase Disaster Recovery Solution at Huawei by
hbaseconasia2017: HBase Disaster Recovery Solution at Huaweihbaseconasia2017: HBase Disaster Recovery Solution at Huawei
hbaseconasia2017: HBase Disaster Recovery Solution at HuaweiHBaseCon
1.4K views21 slides
hbaseconasia2017: Removable singularity: a story of HBase upgrade in Pinterest by
hbaseconasia2017: Removable singularity: a story of HBase upgrade in Pinteresthbaseconasia2017: Removable singularity: a story of HBase upgrade in Pinterest
hbaseconasia2017: Removable singularity: a story of HBase upgrade in PinterestHBaseCon
936 views42 slides
hbaseconasia2017: HareQL:快速HBase查詢工具的發展過程 by
hbaseconasia2017: HareQL:快速HBase查詢工具的發展過程hbaseconasia2017: HareQL:快速HBase查詢工具的發展過程
hbaseconasia2017: HareQL:快速HBase查詢工具的發展過程HBaseCon
1.1K views21 slides
hbaseconasia2017: Apache HBase at Netease by
hbaseconasia2017: Apache HBase at Neteasehbaseconasia2017: Apache HBase at Netease
hbaseconasia2017: Apache HBase at NeteaseHBaseCon
754 views27 slides

More from HBaseCon(20)

hbaseconasia2017: Building online HBase cluster of Zhihu based on Kubernetes by HBaseCon
hbaseconasia2017: Building online HBase cluster of Zhihu based on Kuberneteshbaseconasia2017: Building online HBase cluster of Zhihu based on Kubernetes
hbaseconasia2017: Building online HBase cluster of Zhihu based on Kubernetes
HBaseCon3.9K views
hbaseconasia2017: HBase on Beam by HBaseCon
hbaseconasia2017: HBase on Beamhbaseconasia2017: HBase on Beam
hbaseconasia2017: HBase on Beam
HBaseCon1.3K views
hbaseconasia2017: HBase Disaster Recovery Solution at Huawei by HBaseCon
hbaseconasia2017: HBase Disaster Recovery Solution at Huaweihbaseconasia2017: HBase Disaster Recovery Solution at Huawei
hbaseconasia2017: HBase Disaster Recovery Solution at Huawei
HBaseCon1.4K views
hbaseconasia2017: Removable singularity: a story of HBase upgrade in Pinterest by HBaseCon
hbaseconasia2017: Removable singularity: a story of HBase upgrade in Pinteresthbaseconasia2017: Removable singularity: a story of HBase upgrade in Pinterest
hbaseconasia2017: Removable singularity: a story of HBase upgrade in Pinterest
HBaseCon936 views
hbaseconasia2017: HareQL:快速HBase查詢工具的發展過程 by HBaseCon
hbaseconasia2017: HareQL:快速HBase查詢工具的發展過程hbaseconasia2017: HareQL:快速HBase查詢工具的發展過程
hbaseconasia2017: HareQL:快速HBase查詢工具的發展過程
HBaseCon1.1K views
hbaseconasia2017: Apache HBase at Netease by HBaseCon
hbaseconasia2017: Apache HBase at Neteasehbaseconasia2017: Apache HBase at Netease
hbaseconasia2017: Apache HBase at Netease
HBaseCon754 views
hbaseconasia2017: HBase在Hulu的使用和实践 by HBaseCon
hbaseconasia2017: HBase在Hulu的使用和实践hbaseconasia2017: HBase在Hulu的使用和实践
hbaseconasia2017: HBase在Hulu的使用和实践
HBaseCon878 views
hbaseconasia2017: 基于HBase的企业级大数据平台 by HBaseCon
hbaseconasia2017: 基于HBase的企业级大数据平台hbaseconasia2017: 基于HBase的企业级大数据平台
hbaseconasia2017: 基于HBase的企业级大数据平台
HBaseCon701 views
hbaseconasia2017: HBase at JD.com by HBaseCon
hbaseconasia2017: HBase at JD.comhbaseconasia2017: HBase at JD.com
hbaseconasia2017: HBase at JD.com
HBaseCon828 views
hbaseconasia2017: Large scale data near-line loading method and architecture by HBaseCon
hbaseconasia2017: Large scale data near-line loading method and architecturehbaseconasia2017: Large scale data near-line loading method and architecture
hbaseconasia2017: Large scale data near-line loading method and architecture
HBaseCon598 views
hbaseconasia2017: Ecosystems with HBase and CloudTable service at Huawei by HBaseCon
hbaseconasia2017: Ecosystems with HBase and CloudTable service at Huaweihbaseconasia2017: Ecosystems with HBase and CloudTable service at Huawei
hbaseconasia2017: Ecosystems with HBase and CloudTable service at Huawei
HBaseCon683 views
hbaseconasia2017: HBase Practice At XiaoMi by HBaseCon
hbaseconasia2017: HBase Practice At XiaoMihbaseconasia2017: HBase Practice At XiaoMi
hbaseconasia2017: HBase Practice At XiaoMi
HBaseCon1.8K views
hbaseconasia2017: hbase-2.0.0 by HBaseCon
hbaseconasia2017: hbase-2.0.0hbaseconasia2017: hbase-2.0.0
hbaseconasia2017: hbase-2.0.0
HBaseCon1.8K views
HBaseCon2017 Democratizing HBase by HBaseCon
HBaseCon2017 Democratizing HBaseHBaseCon2017 Democratizing HBase
HBaseCon2017 Democratizing HBase
HBaseCon897 views
HBaseCon2017 Removable singularity: a story of HBase upgrade in Pinterest by HBaseCon
HBaseCon2017 Removable singularity: a story of HBase upgrade in PinterestHBaseCon2017 Removable singularity: a story of HBase upgrade in Pinterest
HBaseCon2017 Removable singularity: a story of HBase upgrade in Pinterest
HBaseCon646 views
HBaseCon2017 Quanta: Quora's hierarchical counting system on HBase by HBaseCon
HBaseCon2017 Quanta: Quora's hierarchical counting system on HBaseHBaseCon2017 Quanta: Quora's hierarchical counting system on HBase
HBaseCon2017 Quanta: Quora's hierarchical counting system on HBase
HBaseCon608 views
HBaseCon2017 Transactions in HBase by HBaseCon
HBaseCon2017 Transactions in HBaseHBaseCon2017 Transactions in HBase
HBaseCon2017 Transactions in HBase
HBaseCon1.8K views
HBaseCon2017 Highly-Available HBase by HBaseCon
HBaseCon2017 Highly-Available HBaseHBaseCon2017 Highly-Available HBase
HBaseCon2017 Highly-Available HBase
HBaseCon1.1K views
HBaseCon2017 Apache HBase at Didi by HBaseCon
HBaseCon2017 Apache HBase at DidiHBaseCon2017 Apache HBase at Didi
HBaseCon2017 Apache HBase at Didi
HBaseCon996 views
HBaseCon2017 gohbase: Pure Go HBase Client by HBaseCon
HBaseCon2017 gohbase: Pure Go HBase ClientHBaseCon2017 gohbase: Pure Go HBase Client
HBaseCon2017 gohbase: Pure Go HBase Client
HBaseCon1.7K views

Recently uploaded

DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J... by
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...Deltares
9 views24 slides
DSD-INT 2023 Modelling litter in the Yarra and Maribyrnong Rivers (Australia)... by
DSD-INT 2023 Modelling litter in the Yarra and Maribyrnong Rivers (Australia)...DSD-INT 2023 Modelling litter in the Yarra and Maribyrnong Rivers (Australia)...
DSD-INT 2023 Modelling litter in the Yarra and Maribyrnong Rivers (Australia)...Deltares
9 views34 slides
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko... by
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...Deltares
11 views23 slides
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit... by
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...Deltares
13 views34 slides
El Arte de lo Possible by
El Arte de lo PossibleEl Arte de lo Possible
El Arte de lo PossibleNeo4j
38 views35 slides
Tridens DevOps by
Tridens DevOpsTridens DevOps
Tridens DevOpsTridens
9 views28 slides

Recently uploaded(20)

DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J... by Deltares
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...
Deltares9 views
DSD-INT 2023 Modelling litter in the Yarra and Maribyrnong Rivers (Australia)... by Deltares
DSD-INT 2023 Modelling litter in the Yarra and Maribyrnong Rivers (Australia)...DSD-INT 2023 Modelling litter in the Yarra and Maribyrnong Rivers (Australia)...
DSD-INT 2023 Modelling litter in the Yarra and Maribyrnong Rivers (Australia)...
Deltares9 views
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko... by Deltares
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...
Deltares11 views
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit... by Deltares
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...
Deltares13 views
El Arte de lo Possible by Neo4j
El Arte de lo PossibleEl Arte de lo Possible
El Arte de lo Possible
Neo4j38 views
Tridens DevOps by Tridens
Tridens DevOpsTridens DevOps
Tridens DevOps
Tridens9 views
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -... by Deltares
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...
Deltares6 views
Elevate your SAP landscape's efficiency and performance with HCL Workload Aut... by HCLSoftware
Elevate your SAP landscape's efficiency and performance with HCL Workload Aut...Elevate your SAP landscape's efficiency and performance with HCL Workload Aut...
Elevate your SAP landscape's efficiency and performance with HCL Workload Aut...
HCLSoftware6 views
.NET Developer Conference 2023 - .NET Microservices mit Dapr – zu viel Abstra... by Marc Müller
.NET Developer Conference 2023 - .NET Microservices mit Dapr – zu viel Abstra....NET Developer Conference 2023 - .NET Microservices mit Dapr – zu viel Abstra...
.NET Developer Conference 2023 - .NET Microservices mit Dapr – zu viel Abstra...
Marc Müller38 views
What Can Employee Monitoring Software Do?​ by wAnywhere
What Can Employee Monitoring Software Do?​What Can Employee Monitoring Software Do?​
What Can Employee Monitoring Software Do?​
wAnywhere21 views
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs by Deltares
DSD-INT 2023 The Danube Hazardous Substances Model - KovacsDSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
Deltares7 views
SUGCON ANZ Presentation V2.1 Final.pptx by Jack Spektor
SUGCON ANZ Presentation V2.1 Final.pptxSUGCON ANZ Presentation V2.1 Final.pptx
SUGCON ANZ Presentation V2.1 Final.pptx
Jack Spektor22 views
MariaDB stored procedures and why they should be improved by Federico Razzoli
MariaDB stored procedures and why they should be improvedMariaDB stored procedures and why they should be improved
MariaDB stored procedures and why they should be improved
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ... by Deltares
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...
Deltares9 views
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon by Deltares
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - AfternoonDSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon
Deltares13 views
360 graden fabriek by info33492
360 graden fabriek360 graden fabriek
360 graden fabriek
info3349224 views
Fleet Management Software in India by Fleetable
Fleet Management Software in India Fleet Management Software in India
Fleet Management Software in India
Fleetable11 views
Roadmap y Novedades de producto by Neo4j
Roadmap y Novedades de productoRoadmap y Novedades de producto
Roadmap y Novedades de producto
Neo4j50 views

Cross-Site BigTable using HBase

  • 1. HBase Cross-site BigTable Security Features in Apache HBase – An Operator’s Guide Cross-Site Big Table using HBase Anoop Sam John, Du Jingcheng, Ramkrishna S. Vasudevan Big Data US Research And Development, Intel
  • 2. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Motivation
  • 3. Motivation • Growing demands for storing the data across geographically distributed data centers. – Data and data pattern is similar across data centers. – But the data is private to each of the data center. • Improve the data availability and disaster recovery. • An easy way to access these distributed data. • Manage the hierarchy relationship between data centers. (Grouping of data centers)
  • 4. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Use Case
  • 5. Intelligent Transportation System • Monitors traffic movements, traffic patterns etc. in every city. • Data in every data center is private and holds traffic pattern of that city • Hierarchy of departments - National Transportation Department/State Transportation Department/City Transportation Department • National/State Transportation Department – Virtual node • Helps to aggregate results/statistics over all the data centers. • Easy access and single point of view of all the data centers.
  • 6. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Agenda
  • 7. Agenda • Goals of CSBT[1] • Architecture of CSBT – Highly Available Global Zookeeper Quorum – Cross-Site Metadata in Global Zookeeper – Cluster Locator – Hierarchy • Admin Operations on CSBT • Read/Write operations on CrossSiteHTable • Data Replication and FailOver • Future Improvements [1] – CSBT refers to Cross-Site Big Table
  • 8. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Goals
  • 9. Goals • A global view for tables across different data centers. • Define and manage the hierarchy relationship between data centers and data. • High availability • Locality – In terms of geography – Each data center holds its own data.
  • 10. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Architecture
  • 12. Architecture • An across data center dedicated, distributed zookeeper quorum – Global Zookeeper • Table partitioning – Each data center holds a specific partition of the table – Every partition of the Cross-site HTable is an HTable itself, bearing a table name “<tableName>_<clustername>” – The partitioning rule is set by user at table creation time using Cluster Locators. • Supports all admin and table operations as supported on the HTable. Apache ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services (Source : http://zookeeper.apache.org/)
  • 13. Architecture • Data center relationship – Allows each data center to configure its peer data center (for replication and failover in read) • Peers for a cluster could be nodes in another cluster also. • Master-Master, Master-slave replication etc. – Uses Asynchronous Replication of Apache HBase • Asynchronously writes the WAL entries to the configured peers – Could define hierarchy for the data centers
  • 14. Highly Available Global Zookeeper Quorum • Dedicated Zookeeper cluster. • Split the Zookeeper quorum across data centers. • Recommended not to use the zookeeper cluster used by the individualHBase setups. • Leverage the Zookeeper Observer – Do not impact the Zookeeper write performance – Configure in such a way that ‘reads’ are served locally – Configure the Zookeeper quorum as <local observers>,<leader/followers>,<observers in other DCs> Observers are non-voting members of an ensemble which only hear the results of votes Observers may be used to talk to an Apache ZooKeeper server from another data center Clients of the Observer will see fast reads, as all reads are served locally, and writes result in minimal network traffic as the number of messages required in the absence of the vote protocol is smaller (Source : http://zookeeper.apache.org/)
  • 15. Cross-Site Metadata in Global Zookeeper CrossSite clusters tables address hierarchy state splitkeys desc proposed_desc peerscluster1 cluster2 cluster3 table1 table2 table3 locator
  • 16. Cluster Locator • Sets data partition logic/rule. • Helps to locate a specific cluster based on the row key. • Users are allowed to create their own cluster locators – PrefixClusterLocator – <clustername>,<row> where “,” is the delimiter – SuffixClusterLocator – <row>,<xxx>,<yyy>,<clustername> where “,” is the delimiter and cluster name is always the string that appears after the occurrence of the last delimiter. • Note that its up to the user to specify the cluster name in the row key while doing ‘puts’ based on the cluster locator configured while table creation.
  • 18. Hierarchy • Could define the parent-child relationship for clusters • The node in the hierarchy could be either a physical cluster, or a virtual one. A virtual node may represent a logical grouping of a set of physical clusters • The hierarchy is used while ‘scan’ing – If a parent node is specified, all its descendants are also counted
  • 19. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Admin operations on Cross-site BigTable
  • 20. Admin Operations • Operation performed using CrossSiteHBaseAdmin • Extends HBaseAdmin.
  • 21. Create Peers • Specifying peers creates the peers under the ‘peers’ node • Address of each peer is written as data in the peer znodes peers cluster2 cluster3 cluster4 cluster1
  • 22. Create Table Cluster a01 Table: T1_a01 Cluster a02 Table: T1_a02 Peer1 Table: T1_a01 (backup) CSBTAdmin Global ZK Cluster a01->Peer1 Cluster a02->Peer2 Peer2 Table: T1_a02 (backup) 1. Create the table znode in ZK 4. Writes the table related data in table’s znode and updates the state in zk 2. Create tables in clusters 3. Create table in peers if any
  • 23. Disable Table Cluster a01 Table: T1_a01 Cluster a02 Table: T1_a02 Peer1 Table: T1_a01 (backup) CSBTAdmin Global ZK Cluster a01->Peer1 Cluster a02->Peer2 Peer2 Table: T1_a02 (backup) 1. Update the state to DISABLING 3. Update the state to DISABLED 2. Disable tables in clusters • Do NOT disable the tables in the peers - As it is asynchronous replication, disabling peer may stop the entire replication. There may be some unfinished WALs from getting replicated
  • 24. Enable Table Cluster a01 Table: T1_a01 Cluster a02 Table: T1_a02 Peer1 Table: T1_a01 (backup) CSBTAdmin Global ZK Cluster a01->Peer1 Cluster a02->Peer2 Peer2 Table: T1_a02 (backup) 1. Update the state to ENABLING 4. Update the state to ENABLED 2. Enable tables in clusters 3. Handle TableNotDisabledException as Peers already ENABLED
  • 25. Alter Schema Cluster a01 Table: T1_a01 Cluster a02 Table: T1_a02 Peer1 Table: T1_a01 (backup) CSBTAdmin Global ZK Cluster a01->Peer1 Cluster a02->Peer2 Peer2 Table: T1_a02 (backup) 1. Write the new HTD to PROPOSED_DESC znode 3. Update the table’s HTD znode 4. Update table state to DISABLED 5. Delete the PROPOSED_DESC znode 3. Alter schema in clusters 4. Add/Modify column in peers by DISABLING. ENABLE after completion. If table not present create the table with the new HTD. 2. Update the state to MODIFYING/ADDING xxx state
  • 26. Delete Table Cluster a01 Table: T1_a01 Cluster a02 Table: T1_a02 Peer1 Table: T1_a01 (backup) CSBTAdmin Global ZK Cluster a01->Peer1 Cluster a02->Peer2 Peer2 Table: T1_a02 (backup) 1. Update the state to DELETING 4. Remove the table from the zk 2. Delete tables in clusters 3. Disable and Delete the tables from the peer
  • 27. Failure handling • Failures are handled for the create/enable/disable/delete table by using ZK states. Any failure the entire operation has to be retried. • A tool that helps to deduce and auto-correct inconsistencies in the CSBT cluster in terms of table state.
  • 28. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Read/Write operations on CrossSiteHTable
  • 29. Operations using CrossSiteHTable • Operations like put/get/scan/delete performed using CrossSiteHTable • Extends HTable
  • 30. Get/Put/Delete • Get/Put/Delete “a01, row1” from table T1 Cluster a01 Table: T1_a01 Cluster a02 Table: T1_a02 CSBTHTable Global ZK 1. retrieve cluster locator for table “T1”(cached) 2. map “a01,row1” to cluster “a01” 3. find address for cluster “a01” (cached) 4. do get/put/delete(“a01,row1”) on table “T1_a01” from cluster “a01”
  • 31. Scan with Start/Stop row • New scan APIs added where cluster names could be passed while creating scans • Scan from table T1 [ start – “row1”, end – “row6” ] , clusters-[cluster a01, cluster a02] Cluster a01 Table: T1_a01 CSBTHTable Global ZK 1. retrieve cluster info for table “T1”(cached) 2. find address for cluster “a01” and “a02” (cached) 3. scan from(“a01,row1”) to (“a01,row6) on table “T1_a01” from cluster “a01” 4. scan from(“a02,row1”) to (“a02,row6) on table “T1_a02” from cluster “a02” Cluster a02 Table: T1_a02 Cluster a03 Table: T1_a03
  • 32. Scan with Hierarchy Scan from table T1 [ start – “row1”, end – “row6” ] , clusters- [California] California – virtual node SFO, LA, San Diego – physical nodes
  • 33. Scan • Uses a merge sort iterator to merge the results from different clusters Client Merge(sort) Iterator Cluster A Cluster B Cluster Zall clusters …
  • 34. Operations on CSBT • The admin operations have shell and thrift support. • Also supports MapReduce for operations on CrossSiteBigTable.
  • 35. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Data Replication and FailOver
  • 36. Data Center Relationship • Allows data centers to add peers • Apache HBase replication – Asynchronous data replication – Customized replication sink for CSBT • Read-only failover – Automatically redirects the read to the peer center • Existing data not getting replicated for dynamic peer addition.
  • 37. Data Replication Cluster “a01” Table: T1_a01 Table: T1_a02’ (backup) Cluster “a02” Table: T1_a03’ (backup) Table: T1_a02 Cluster “a03” Table: T1_a01’ (backup) Table: T1_a03 CSBTHTable replicate replicate replicate put put put
  • 38. Read-only Failover Cluster “a01” Table: T1_a01 Table: T1_a02’ (backup) Cluster “a02” Table: T1_a03’ (backup) Table: T1_a02 Cluster “a03” Table: T1_a01’ (backup) Table: T1_a03 CSBTHTable failover to backup DC get/scan
  • 39. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Future improvements
  • 40. Future improvements • Security – CSBT security and how user/group authentications interact • MR improvement • Full fledged CSBT HBCK. Currently the MR tasks runs in one cluster and all the result computation happens in one cluster. We could improve this by dispatching the task to each cluster and then collect the results from them.
  • 41. Partitioning Rule • A rule to parse row keys, help to map records to different clusters. ClusterLocator provides this facility which is recorded in the central ZK – PrefixClusterLocator – SuffixClusterLocator – … • An example of PrefixClusterLocator – If a row key is “clusterA,rowKey1”, then this record belongs to clusterA Q & A