diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-04-07 08:16:15 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-04-07 08:19:45 -0700 |
commit | 71b0d05c161442f2e66f1608d2a2e9eb2bd9c305 (patch) | |
tree | ea7eae790cdfe556941dbf6b9987b23375e90a5b | |
parent | 89f83024945237adb1628388159f10a7484d16af (diff) | |
download | kafka-python-71b0d05c161442f2e66f1608d2a2e9eb2bd9c305.tar.gz |
Update 0.9.0.0 configuration defaults so they are consistent with official release
-rw-r--r-- | servers/0.9.0.0/resources/kafka.properties | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/servers/0.9.0.0/resources/kafka.properties b/servers/0.9.0.0/resources/kafka.properties index d7b81c1..0592c1e 100644 --- a/servers/0.9.0.0/resources/kafka.properties +++ b/servers/0.9.0.0/resources/kafka.properties @@ -37,16 +37,16 @@ host.name={host} #advertised.port=<port accessible by clients> # The number of threads handling network requests -num.network.threads=2 +num.network.threads=3 # The number of threads doing disk I/O num.io.threads=8 # The send buffer (SO_SNDBUF) used by the socket server -socket.send.buffer.bytes=1048576 +socket.send.buffer.bytes=102400 # The receive buffer (SO_RCVBUF) used by the socket server -socket.receive.buffer.bytes=1048576 +socket.receive.buffer.bytes=102400 # The maximum size of a request that the socket server will accept (protection against OOM) socket.request.max.bytes=104857600 @@ -117,7 +117,6 @@ offsets.topic.replication.factor=2 # Allow shorter session timeouts for tests group.min.session.timeout.ms=1000 - ############################# Zookeeper ############################# # Zookeeper connection string (see zookeeper docs for details). |