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

Compare with Current View Page History

« Previous Version 7 Next »

General

Since Apache Hama 0.4.0 we provide the functionality to implement your own Synchronization Service.

Apache Hama already ships with a default implementation with Apache Zookeeper, however there may be other synchronization frameworks that can be used for it.

Architecture

There is a SyncServer and a SyncClient, both after the name are used for Apache Hama to do the barrier sync.

However, there a structural differences, for example in "normal" Hama the server is not launched by the framework. It has to be launched by the user. In Hama-YARN the server is part of the ApplicationMaster and will be started within.

The client is consistent across all the different implementations, it should do all the neat client stuff like registering a job/task and handling the sync by connecting to the synchronization server etc.

Server

TODO

Client

TODO

Configuring

Both implemenations can be set by the configuration values:

   hama.sync.server.class
   hama.sync.client.class

Make sure these two configurations are consistent on every host in every configuration. And make sure that all these classes have a public default constructure since they will be instantiated via reflection.

  • No labels