From 3942b0bfffa82b598b878de2b60198eb0935bdba Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Mon, 29 Jun 2009 20:11:27 +0000 Subject: [PATCH] HBASE-1589 Up zk maxClientCnxns from default of 10 to 20 or 30 or so git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@789431 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES.txt | 1 + conf/zoo.cfg | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 1f7fab58b0e..e4a757b597a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -418,6 +418,7 @@ Release 0.20.0 - Unreleased HBASE-1581 Run major compaction on .META. when table is dropped or truncated HBASE-1587 Update ganglia config and doc to account for ganglia 3.1 and hadoop-4675 + HBASE-1589 Up zk maxClientCnxns from default of 10 to 20 or 30 or so OPTIMIZATIONS HBASE-1412 Change values for delete column and column family in KeyValue diff --git a/conf/zoo.cfg b/conf/zoo.cfg index 1f3ca0439ad..5c2556ae78f 100644 --- a/conf/zoo.cfg +++ b/conf/zoo.cfg @@ -10,5 +10,10 @@ syncLimit=5 dataDir=${hbase.tmp.dir}/zookeeper # the port at which the clients will connect clientPort=2181 +# 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 +# the ZooKeeper ensemble. Default is 10. Set high to avoid zk connection +# issues running standalone and pseudo-distributed +maxClientCnxns=30 server.0=localhost:2888:3888