aboutsummaryrefslogtreecommitdiff
path: root/bigtop-packages/src/common/hama/conf.pseudo/hama-site.xml
diff options
context:
space:
mode:
authorMinho Kim <minwise.kim@samsung.com>2015-08-12 09:55:09 +0900
committerYoungWoo Kim <ywkim@apache.org>2015-08-19 09:05:17 +0900
commit1f11c766df34d1b878350fe86c569262dfefcc58 (patch)
treef5f98e8b15f42a07607a325616be5e6a9b25abf1 /bigtop-packages/src/common/hama/conf.pseudo/hama-site.xml
parent7e5a9225f51314b697c6fb31194bdb659d9e0bde (diff)
BIGTOP-1126. Add Hama to Bigtop
Signed-off-by: YoungWoo Kim <ywkim@apache.org>
Diffstat (limited to 'bigtop-packages/src/common/hama/conf.pseudo/hama-site.xml')
-rw-r--r--bigtop-packages/src/common/hama/conf.pseudo/hama-site.xml58
1 files changed, 58 insertions, 0 deletions
diff --git a/bigtop-packages/src/common/hama/conf.pseudo/hama-site.xml b/bigtop-packages/src/common/hama/conf.pseudo/hama-site.xml
new file mode 100644
index 00000000..759cf9e5
--- /dev/null
+++ b/bigtop-packages/src/common/hama/conf.pseudo/hama-site.xml
@@ -0,0 +1,58 @@
+<?xml version="1.0"?>
+<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
+<!--
+/**
+ * Copyright 2007 The Apache Software Foundation
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+-->
+<configuration>
+ <property>
+ <name>bsp.master.address</name>
+ <value>localhost:40000</value>
+ <description>The address of the bsp master server. Either the
+ literal string "local" or a host:port for distributed mode
+ </description>
+ </property>
+
+ <property>
+ <name>fs.default.name</name>
+ <value>local</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>localhost</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>
+
+ <property>
+ <name>hama.zookeeper.property.clientPort</name>
+ <value>2181</value>
+ </property>
+</configuration>