Supriya Ghosh (Editor)

H Store

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Developer(s)
  
Brown, CMU, MIT, Yale

Operating system
  
Linux, Mac OS X

Written in
  
C++, Java

Stable release
  
June 2016 / June 3, 2016; 8 months ago (2016-06-03)

Repository
  
github.com/apavlo/h-store

Type
  
Database Management System

H-Store is an experimental database management system (DBMS) designed for online transaction processing applications that is being developed by a team at Brown University, Carnegie Mellon University, the Massachusetts Institute of Technology, and Yale University. The system's design was developed in 2007 by database researchers Michael Stonebraker, Sam Madden, Andy Pavlo and Daniel Abadi.

Contents

Architecture

The significance of the H-Store is that it is the first implementation of a new class of parallel database management systems, called NewSQL,that provide the high-throughput and high-availability of NoSQL systems, but without giving up the transactional guarantees of a traditional DBMS. Such systems are able to scale out horizontally across multiple machines to improve throughput, as opposed to moving to a more powerful, more expensive machine for a single-node system.

H-Store is able to execute transaction processing with high throughput by forgoing much of legacy architecture of System R-like systems. For example, H-Store was designed as a parallel, row-storage relational DBMS that runs on a cluster of shared-nothing, main memory executor nodes. The database is partitioned into disjoint subsets that are assigned to a single-threaded execution engine assigned to one and only one core on a node. Each engine has exclusive access to all of the data at its partition. Because it is single-threaded, only one transaction at a time is able to access the data stored at its partition. Thus, there are no physical locks or latches in the system, and no transaction will stall waiting for another transaction once it is started.

Licensing

H-Store is licensed under the BSD license and GPL licenses. The commercial version of H-Store's design is VoltDB.

References

H-Store Wikipedia


Similar Topics