Skip to content

Instantly share code, notes, and snippets.

@kovyrin
Created August 27, 2011 17:16
Show Gist options
  • Save kovyrin/1175624 to your computer and use it in GitHub Desktop.
Save kovyrin/1175624 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>hbase.rootdir</name>
<value>hdfs://hbase01.local:9000/hbase</value>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>hbase01.local,hbase02.local,hbase03.local,hbase04.local,hbase05.local</value>
</property>
<property>
<name>hbase.hstore.blockingStoreFiles</name>
<value>15</value>
</property>
<!-- default: 10 -->
<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>
<!-- default: 0.4 -->
<property>
<name>hbase.regionserver.global.memstore.upperLimit</name>
<value>0.300</value>
</property>
<!-- default: 0.3 -->
<property>
<name>hbase.regionserver.global.memstore.lowerLimit</name>
<value>0.275</value>
</property>
<!-- default: 0.2 -->
<property>
<name>hfile.block.cache.size</name>
<value>0.2</value>
</property>
<!-- default: 60000 -->
<property>
<name>zookeeper.session.timeout</name>
<value>180000</value>
</property>
<property>
<name>hbase.regions.percheckin</name>
<value>20</value>
</property>
<property>
<name>hbase.client.keyvalue.maxsize</name>
<value>-1</value>
<description>Specifies the combined maximum allowed size of a KeyValue
instance. This is to set an upper boundary for a single entry saved in a
storage file. Since they cannot be split it helps avoiding that a region
cannot be split any further because the data is too large. It seems wise
to set this to a fraction of the maximum region size. Setting it to zero
or less disables the check.
</description>
</property>
<!-- default: .3 -->
<property>
<name>hbase.regions.slop</name>
<value>.15</value>
<description>Rebalance if regionserver has average + (average * slop)
regions. Default is 30% slop.
</description>
</property>
<!-- The following are set temporarily for the bulk load -->
<!-- default: 7 -->
<property>
<name>hbase.hstore.blockingStoreFiles</name>
<value>30</value>
</property>
<property>
<name>hbase.hstore.blockingWaitTime</name>
<value>10000</value>
</property>
<property>
<name>hbase.hstore.compaction.max</name>
<value>30</value>
</property>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment