Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Running Hama Over InfiniBand

  • Java 7+ required.

Create an SDP configuration file

Each BSP peer (task) will have its own port number for communicating with others. For example, if you set set bsp.peer.port to 61000 and set bsp.tasks.maximum to 5, BSP peers will use the port range from 61000 to 61005.

Wiki Markup
To
enable SDP support for BSP peers, create a configuration file like the following
 enable SDP^\[1\]^ support for BSP peers, create a configuration file like the following sample:

No Format

[edward@192.168.10.1 ~]# cat {$HAMA_HOME}/conf/sdp.conf
# Use SDP when binding to
bind 192.168.10.1 61000-61010

# Use SDP when connecting to
connect 192.168.10.0/24 61000-61010

NOTE: This configuration file must reside on every node.

...