Apache Hama

Apache Hama
Developer(s) Apache Software Foundation
Preview release
0.6.4 / March 5, 2014 (2014-03-05)
Development status Active
Written in Java
Operating system Cross-platform
Type Distributed Computing, Bulk Synchronous Parallel
License Apache License 2.0
Website hama.apache.org

Apache Hama is a distributed computing framework based on Bulk Synchronous Parallel computing techniques for massive scientific computations e.g., matrix, graph and network algorithms.[1] It is a Top Level Project under the Apache Software Foundation. It was created by Edward J. Yoon,[2] who named it (short for "Hadoop Matrix") and was inspired by Google's Pregel large-scale graph computing framework described in 2010.[3]

Architecture

Hama consists of three major components: BSPMaster, GroomServers and Zookeeper.[4]

BSPMaster

BSPMaster is responsible for:

A BSP Master and multiple grooms are started by the script. Then, the bsp master starts up with a RPC server for groom servers. Groom servers starts up with a BSPPeer instance and a RPC proxy to contact the bsp master. After started, each groom periodically sends a heartbeat message that encloses its groom server status, including maximum task capacity, unused memory, and so on.

Each time the bsp master receives a heartbeat message, it brings up-to-date groom server status - the bsp master makes use of groom servers' status in order to effectively assign tasks to idle groom servers - and returns a heartbeat response that contains assigned tasks and others actions that a groom server has to do. For now, we have a FIFO job scheduler and very simple task assignment algorithms.

GroomServer

A Groom Server (shortly referred to as groom) is a process that performs bsp tasks assigned by BSPMaster. Each groom contacts the BSPMaster, and it takes assigned tasks and reports its status by means of periodical piggybacks with BSPMaster. Each groom is designed to run with HDFS or other distributed storages. Basically, a groom server and a data node should be run on one physical node.

Zookeeper

A Zookeeper is used to manage the efficient barrier synchronisation of the BSPPeers.

See also

References

  1. "Apache Hama". Project web site. Retrieved September 20, 2013.
  2. Apache Hama Proposal
  3. Grzegorz Malewicz, Matthew H. Austern, Aart J.C Bik, James C. Dehnert, Ilan Horn, Naty Leiser, Grzegorz Czajkowski (2010). "Pregel: a system for large-scale graph processing". Proceedings of the 2010 ACM SIGMOD International Conference on Management of data: 135–146. doi:10.1145/1807167.1807184.
  4. Apache Hama Architecture

External links

This article is issued from Wikipedia - version of the 12/23/2014. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.