HBASE-4995 Increase zk maxClientCnxns to give us some head room
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1212570 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
844819717c
commit
69b505b4da
|
@ -142,7 +142,7 @@ public final class HConstants {
|
||||||
ZK_CFG_PROPERTY_PREFIX + "dataDir";
|
ZK_CFG_PROPERTY_PREFIX + "dataDir";
|
||||||
|
|
||||||
/** Default limit on concurrent client-side zookeeper connections */
|
/** Default limit on concurrent client-side zookeeper connections */
|
||||||
public static final int DEFAULT_ZOOKEPER_MAX_CLIENT_CNXNS = 30;
|
public static final int DEFAULT_ZOOKEPER_MAX_CLIENT_CNXNS = 300;
|
||||||
|
|
||||||
/** Configuration key for ZooKeeper session timeout */
|
/** Configuration key for ZooKeeper session timeout */
|
||||||
public static final String ZK_SESSION_TIMEOUT = "zookeeper.session.timeout";
|
public static final String ZK_SESSION_TIMEOUT = "zookeeper.session.timeout";
|
||||||
|
|
|
@ -724,7 +724,7 @@
|
||||||
</property>
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>hbase.zookeeper.property.maxClientCnxns</name>
|
<name>hbase.zookeeper.property.maxClientCnxns</name>
|
||||||
<value>30</value>
|
<value>300</value>
|
||||||
<description>Property from ZooKeeper's config zoo.cfg.
|
<description>Property from ZooKeeper's config zoo.cfg.
|
||||||
Limit on number of concurrent connections (at the socket level) that a
|
Limit on number of concurrent connections (at the socket level) that a
|
||||||
single client, identified by IP address, may make to a single member of
|
single client, identified by IP address, may make to a single member of
|
||||||
|
|
Loading…
Reference in New Issue