Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Difference between HBase and Cassandra

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

1. HBase: This model is used to provide random access to a large amount of structured data. It builds on the top of the Hadoop file system and is column-oriented in nature. It is used to store the data in HDFS. It is an open-source database that provides data replication. Three important components of HBase are HMaster, Region server, and Zookeeper. 

2. Cassandra: Cassandra is designed to handle a large amount of data across different commodity servers, providing high availability without any kind of failure. It has a distributed architecture that is able to handle a large amount of data. Data is placed on different machines with more than one replication factor to attain a high availability without any kind of failure. 

Difference between HBase and Cassandra:

S. NoParametersHBaseCassandra
1.InfrastructureIt uses Hadoop infrastructure.Cassandra differs from Hadoop in terms of infrastructure and operation. It employs a variety of DBMS and infrastructure for a variety of applications.
2.Architecture ModelIt is based on Master-Slave Architecture Model.It is based on Active-Active Node Architecture Model.
3.Base of DatabaseHBase is based on Google BigTable.Cassandra is based on Amazon DynamoDB.
4.Ordered PartitioningHBase does not support ordered partitioning.Cassandra allows for ordered partitioning. Because of this ordered division, Cassandra’s row sizes can reach tens of megabytes. 
5.Single Point of Failure (SPoF)The cluster’s accessibility depends on the availability of the Master node.All nodes are equal so no such SPoF exists.
6.ConsistencyHBase provides more consistency.It does not provide as much consistency as HBase provides.
7.CoprocessorHBase has the ability to use a Coprocessor. Cassandra is not capable to support Coprocessor functionality.
 TriggersTriggers are supported because of Coprocessor capability.Triggers are not supported.
8.Inter-communicationFor internal node communication, HBase uses the Zookeeper protocol. Here, one node act as a master through which data is received by all other modes.For internal node communication, Cassandra uses the Gossip protocol. Data will be transferred from one node to the next. To put it another way, we duplicate the data.
9.Query LanguageThe HBase query language is a custom-based language that must be learned. Cassandra has its own CQL (Cassandra Query Language), which is in line with SQL language.
10.DocumentationIt is not as easy to learn as Cassandra.Easy to learn because of better documentation than HBase.
11.Setup ClusterHBase Cluster setup is not easy.Cluster setup of Cassandra is easier than HBase.
12.Rebalancing of ClustersHBase supports automatic rebalancing within clusters.Cassandra also supports the feature of rebalancing but not of the entire cluster.
13.Transactions

HBase provides two methods for handling the transactions- 

  • ‘Check and Put’ 
  •  ‘Read-Check-Delete’ 

Cassandra provides two methods for handling the transactions-

  • ‘Compare and Set’
  • ‘Row-level Write Isolation’
14.CAP TheoremHBase works on CP (Consistency, Partition Tolerance) Model.Cassandra works on the AP (Availability, Partition Tolerance. ) Model.
15.SecurityHBase permits access at the cell level. HBase works with administrators who are responsible for assigning visibility labels to data sets and then informing user groups which label they can access.Cassandra supports access at the row level. Cassandra assigns responsibilities and conditions to users.
16.Reads and WritesHBase is good at intensive reads.Cassandra is good at writing. 
17.Popular Use Cases
  • Online Log Analytics
  • Hadoop
  • Write Heavy Applications
  • MapReduce
  • Sensor Data
  • Messaging Systems
  • E-commerce Websites
  • Always-On Applications
  • Fraud Detection for Banks
18.Used by
  • Adobe
  • Xiaomi
  • Yahoo
  • eBay
  • Walmart
  • Netflix
My Personal Notes arrow_drop_up
Last Updated : 08 Jun, 2022
Like Article
Save Article
Similar Reads