2007-04-24 17:13:08 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
|
|
|
|
<configuration>
|
|
|
|
<property>
|
|
|
|
<name>hbase.master</name>
|
|
|
|
<value>localhost:60000</value>
|
|
|
|
<description>The host and port that the HBase master runs at.
|
|
|
|
TODO: Support 'local' (All running in single context).
|
|
|
|
</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.regionserver</name>
|
|
|
|
<value>localhost:60010</value>
|
|
|
|
<description>The host and port a HBase region server runs at.
|
|
|
|
</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.regiondir</name>
|
|
|
|
<value>${hadoop.tmp.dir}/hbase</value>
|
|
|
|
<description>The directory shared by region servers.
|
|
|
|
</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.client.timeout.length</name>
|
|
|
|
<value>10000</value>
|
|
|
|
<description>Client timeout in milliseconds</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.client.timeout.number</name>
|
|
|
|
<value>5</value>
|
|
|
|
<description>Try this many timeouts before giving up.
|
|
|
|
</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.client.retries.number</name>
|
|
|
|
<value>2</value>
|
|
|
|
<description>Count of maximum retries fetching the root region from root
|
|
|
|
region server.
|
|
|
|
</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.master.meta.thread.rescanfrequency</name>
|
|
|
|
<value>60000</value>
|
|
|
|
<description>How long the HMaster sleeps (in milliseconds) between scans of
|
2007-05-07 15:58:53 -04:00
|
|
|
the root and meta tables.
|
2007-04-24 17:13:08 -04:00
|
|
|
</description>
|
|
|
|
</property>
|
2007-05-07 15:58:53 -04:00
|
|
|
<property>
|
|
|
|
<name>hbase.master.lease.period</name>
|
|
|
|
<value>30000</value>
|
|
|
|
<description>HMaster server lease period in milliseconds. Default is
|
|
|
|
30 seconds.</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.server.thread.wakefrequency</name>
|
|
|
|
<value>10000</value>
|
|
|
|
<description>Time to sleep in between searches for work (in milliseconds).
|
|
|
|
Used as sleep interval by service threads such as META scanner and log roller.
|
|
|
|
</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.regionserver.lease.period</name>
|
|
|
|
<value>30000</value>
|
|
|
|
<description>HRegion server lease period in milliseconds. Default is
|
|
|
|
30 seconds.</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.regionserver.handler.count</name>
|
|
|
|
<value>10</value>
|
|
|
|
<description>Count of RPC Server instances spun up on RegionServers
|
|
|
|
Same property is used by the HMaster for count of master handlers.
|
|
|
|
Default is 10.
|
|
|
|
</description>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>hbase.regionserver.msginterval</name>
|
|
|
|
<value>15000</value>
|
|
|
|
<description>Interval between messages from the RegionServer to HMaster
|
|
|
|
in milliseconds. Default is 15. Set this value low if you want unit
|
|
|
|
tests to be responsive.
|
|
|
|
</description>
|
|
|
|
</property>
|
|
|
|
|
2007-04-24 17:13:08 -04:00
|
|
|
</configuration>
|