HBASE-2341 ZK settings for initLimit/syncLimit
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@932203 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
beefa3b7b3
commit
bb5984fe82
|
@ -267,6 +267,8 @@ Release 0.21.0 - Unreleased
|
|||
HBASE-2335 mapred package docs don't say zookeeper jar is a dependent
|
||||
HBASE-2417 HCM.locateRootRegion fails hard on "Connection refused"
|
||||
HBASE-2346 Usage of FilterList slows down scans
|
||||
HBASE-2341 ZK settings for initLimit/syncLimit should not have been removed
|
||||
from hbase-default.xml
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1760 Cleanup TODOs in HTable
|
||||
|
|
|
@ -501,6 +501,21 @@
|
|||
<value>10</value>
|
||||
</property>
|
||||
-->
|
||||
<property>
|
||||
<name>hbase.zookeeper.property.initLimit</name>
|
||||
<value>10</value>
|
||||
<description>Property from ZooKeeper's config zoo.cfg.
|
||||
The number of ticks that the initial synchronization phase can take.
|
||||
</description>
|
||||
</property>
|
||||
<property>
|
||||
<name>hbase.zookeeper.property.syncLimit</name>
|
||||
<value>5</value>
|
||||
<description>Property from ZooKeeper's config zoo.cfg.
|
||||
The number of ticks that can pass between sending a request and getting an
|
||||
acknowledgment.
|
||||
</description>
|
||||
</property>
|
||||
<property>
|
||||
<name>hbase.zookeeper.property.dataDir</name>
|
||||
<value>${hbase.tmp.dir}/zookeeper</value>
|
||||
|
|
Loading…
Reference in New Issue