Skip to content

Instantly share code, notes, and snippets.

@elliottneilclark
Created February 11, 2011 02:06
Show Gist options
  • Save elliottneilclark/821794 to your computer and use it in GitHub Desktop.
Save elliottneilclark/821794 to your computer and use it in GitHub Desktop.
<configuration>
<property>
<name>hbase.rootdir</name>
<value>hdfs://localhost:9000/hbase</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>ip-10-114-147-85.ec2.internal</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 HBASE_MANAGES_ZK is set in hbase-env.sh
this is the list of servers which we will start/stop ZooKeeper on.
</description>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
<description>The mode the cluster will be in. Possible values are
false: standalone and pseudo-distributed setups with managed Zookeeper
true: fully-distributed with unmanaged Zookeeper Quorum (see hbase-env.sh)
</description>
</property>
<property>
<name>hbase.regionserver.lease.period</name>
<value>10000</value>
<description>shorter lease time for servers, to minimize the timeout when a server goes down
</description>
</property>
<property>
<name>hbase.client.pause</name>
<value>500</value>
<description>shorter pause time for clients, to minimize the time before connection retries.
</description>
</property>
<property>
<name>hbase.regionserver.handler.count</name>
<value>100</value>
</property>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment