Apache Hama配置

来源:互联网 发布:淘宝要绑定身份证号 编辑:程序博客网 时间:2024/06/07 01:13

hama-site.xml

<configuration>  <property>    <name>bsp.master.address</name>    <value>192.168.0.1:40000</value>    <description>The address of the bsp master server. Either the    literal string "local" or a host[:port] (where host is a name or    IP address) for distributed mode.    </description>  </property> <property>      <name>fs.default.name</name>      <value>hdfs://192.168.0.1:9000/</value>      <description>        The name of the default file system. Either the literal string        "local" or a host:port for HDFS.      </description> </property> <property>    <name>hama.zookeeper.quorum</name>    <value>192.168.0.1</value>    <description>Comma separated list of servers in the ZooKeeper quorum.    For example, "host1.mydomain.com,host2.mydomain.com,host3.mydomain.com".    By default this is set to localhost for local and pseudo-distributed modes    of operation. For a fully-distributed setup, this should be set to a full    list of ZooKeeper quorum servers. If HAMA_MANAGES_ZK is set in hama-env.sh    this is the list of servers which we will start/stop ZooKeeper on.    </description>  </property></configuration>


原创粉丝点击