Apache HBase

Apache HBase
Developer(s) Apache Software Foundation
Initial release March 28, 2008 (2008-03-28)
Stable release
1.4.3 / 3 April 2018 (2018-04-03)
Repository https://github.com/apache/hbase
Written in Java
Operating system Cross-platform
Type Distributed database
License Apache License 2.0
Website hbase.apache.org

HBase is an open-source, non-relational, distributed database modeled after Google's Bigtable and written in Java. It is developed as part of Apache Software Foundation's Apache Hadoop project and runs on top of HDFS (Hadoop Distributed File System), providing Bigtable-like capabilities for Hadoop. That is, it provides a fault-tolerant way of storing large quantities of sparse data (small amounts of information caught within a large collection of empty or unimportant data, such as finding the 50 largest items in a group of 2 billion records, or finding the non-zero items representing less than 0.1% of a huge collection).

HBase features compression, in-memory operation, and Bloom filters on a per-column basis as outlined in the original Bigtable paper.[1] Tables in HBase can serve as the input and output for MapReduce jobs run in Hadoop, and may be accessed through the Java API but also through REST, Avro or Thrift gateway APIs. HBase is a column-oriented key-value data store and has been idolized widely because of its lineage with Hadoop and HDFS. HBase runs on top of HDFS and is well-suited for faster read and write operations on large datasets with high throughput and low input/output latency.

HBase is not a direct replacement for a classic SQL database, however Apache Phoenix project provides a SQL layer for HBase as well as JDBC driver that can be integrated with various analytics and business intelligence applications. The Apache Trafodion project provides a SQL query engine with ODBC and JDBC drivers and distributed ACID transaction protection across multiple statements, tables and rows that uses HBase as a storage engine.

HBase is now serving several data-driven websites,[2], but Facebook's Messaging Platform recently migrated from HBase to MyRocks.[3][4] Unlike relational and traditional databases, HBase does not support SQL scripting; instead the equivalent is written in Java, employing similarity with a MapReduce application.

In the parlance of Eric Brewer’s CAP Theorem, HBase is a CP type system.

History

Apache HBase began as a project by the company Powerset out of a need to process massive amounts of data for the purposes of natural-language search. It is now a top-level Apache project.[5]

Facebook elected to implement its new messaging platform using HBase in November 2010, but migrated away from HBase in 2018.[3]

As of February 2017, the 1.2.x series is the current stable release line.

Use cases & production deployments

Enterprises that use HBase

The following is a list of notable enterprises that have used or are using HBase:

See also

References

  1. Chang, et al. (2006). Bigtable: A Distributed Storage System for Structured Data
  2. "Apache HBase – Powered By Apache HBase™". hbase.apache.org. Retrieved 8 April 2018.
  3. 1 2 "Migrating Messenger storage to optimize performance". www.facebook.com. Retrieved 5 July 2018.
  4. Facebook: Why our 'next-gen' comms ditched MySQL Retrieved: 17 December 2010
  5. "Brief Look on Apache Hbase". Retrieved 26 December 2017.
  6. HBaseCon (2 August 2016). "Apache HBase at Airbnb". slideshare.net. Retrieved 8 April 2018.
  7. "Why Imgur Dropped MySQL in Favor of HBase - DZone Database". dzone.com. Retrieved 8 April 2018.
  8. "Tech Tuesday: Imgur Notifications: From MySQL to HBase - The Imgur Blog". blog.imgur.com. Retrieved 8 April 2018.
  9. Doyung Yoon. "S2Graph : A Large-Scale Graph Database with HBase".
  10. Cheolsoo Park and Ashwin Shankar. "Netflix: Integrating Spark at Petabyte Scale".
  11. "Hbase at Salesforce.com".
  12. Josh Baer. "How Apache Drives Spotify's Music Recommendations".
  13. "Tuenti Group Chat: Simple, yet complex".
  14. "Tuenti Asyncthrift".

Bibliography

  • Dimiduk, Nick; Khurana, Amandeep (28 November 2012). HBase in Action (1st ed.). Manning Publications. p. 350. ISBN 978-1617290527.
  • George, Lars (20 September 2011). HBase: The Definitive Guide (1st ed.). O'Reilly Media. p. 556. ISBN 978-1449396107.
  • Jiang, Yifeng (16 August 2012). HBase Administration Cookbook (1st ed.). Packt Publishing. p. 332. ISBN 978-1849517140.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.