You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 302 Next »

This effort is still a "work in progress". Please feel free to add comments.


Introduction

HAMA is a distributed computing framework on Hadoop for massive scientific computations, currently being incubated as one of the incubator project by the Apache Software Foundation.

Project Goal

The Hama project goal is to provide scientific computation environment with its own computing engine, called BSP, on the Hadoop. We are focusing on are as follows:

  • Compatibility
  • Scalability
  • Flexibility
  • Usability and Applicability

The overall architecture of HAMA

Hama is consist of BSP, a network-based distributed computing engine, and a set of applications.

BSP framework

Hama BSP is a network-based distributed computing engine. The idea of network-based distributed computing using commodity PCs, and The BSP (Bulk Synchronous Parallel) model is not new. See http://en.wikipedia.org/wiki/Bulk_synchronous_parallel more detailed information of BSP. We are inspired from Google Pregel, we believe that the BSP programming paradigm is ideally suited for complex problems requiring communication of data, such as matrix, graph.

One BSP cluster consists of one BSPMaster, multiple GroomServer and one or more zookeeper servers in a network environment.

BSPMaster

BSPMaster is responsible to do the following:

  1. Maintaining groom server status. 2. Controlling super steps in a cluster. 3. Maintaining job progress information. 4. Scheduling Jobs and Assigning tasks to groom servers 5. Disseminating execution class across groom servers. 6. Controlling fault. 7. Providing users with the cluster control interface.

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 - later, BSPPeer needs to be integrated with GroomServer - 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.

Fault Tolerance Mechanisms

BSP Programming Interface

Hama BSP programming interface is designed to be similar to the MapReduce interface. This allows the framework to be less complex than the traditional BSP libraries capable of executing sequential code, we to provide user-friendly and intuitive programming interface to existing users of MapReduce framework. See the below example code:

public class BSPEaxmple {

  class MyBSP extends BSP {

    public MyBSP(Configuration conf) throws IOException {
      super(conf);
      // TODO Auto-generated constructor stub
    }

    @Override
    public void bsp(BSPPeer bspPeer) throws IOException, KeeperException,
        InterruptedException {
      // A communication and synchronization phase of a BSP superstep
      
      // Send data to neighbor node
      bspPeer.send(hostname, msg);

      // Superstep synchronization
      bspPeer.sync();

      // Receive current messages
      bspPeer.getCurrentMessage();
    }
    
  }
  
  // BSP job configuration 
  public void main(String[] args) throws Exception {
    BSPJob bsp = new BSPJob(new HamaConfiguration());
    // Set the job name
    bsp.setJobName("My BSP Job");
    bsp.setBspClass(MyBSP.class);

    // Submit job
    bsp.submit();
  }

}  
  • In/Output System is planned in next version.

Examples

  • No labels