Author: junrao
Date: Mon Aug 8 18:27:54 2011
New Revision: 1155041
URL: http://svn.apache.org/viewvc?rev=1155041&view=rev
Log:
change default zk connection limit to infinite; KAFKA-88
Modified:
incubator/kafka/trunk/config/zookeeper.properties
Modified: incubator/kafka/trunk/config/zookeeper.properties
URL: http://svn.apache.org/viewvc/incubator/kafka/trunk/config/zookeeper.properties?rev=1155041&r1=1155040&r2=1155041&view=diff
==============================================================================
--- incubator/kafka/trunk/config/zookeeper.properties (original)
+++ incubator/kafka/trunk/config/zookeeper.properties Mon Aug 8 18:27:54 2011
@@ -2,3 +2,5 @@
dataDir=/tmp/zookeeper
# the port at which the clients will connect
clientPort=2181
+# disable the per-ip limit on the number of connections since this is a non-production config
+maxClientCnxns=0
|