Skip to content

Commit 21b5db0

Browse files
committed
Untested, keeps only the overrides that we've had opinions on
1 parent 0a50098 commit 21b5db0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

kafka/10broker-config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ data:
6464
6565
# The number of threads per data directory to be used for log recovery at startup and flushing at shutdown.
6666
# This value is recommended to be increased for installations with data dirs located in RAID array.
67-
num.recovery.threads.per.data.dir=1
67+
#num.recovery.threads.per.data.dir=1
6868
6969
############################# Server Basics #############################
7070
@@ -96,19 +96,19 @@ data:
9696
inter.broker.listener.name=PLAINTEXT
9797
9898
# The number of threads that the server uses for receiving requests from the network and sending responses to the network
99-
num.network.threads=3
99+
#num.network.threads=3
100100
101101
# The number of threads that the server uses for processing requests, which may include disk I/O
102-
num.io.threads=8
102+
#num.io.threads=8
103103
104104
# The send buffer (SO_SNDBUF) used by the socket server
105-
socket.send.buffer.bytes=102400
105+
#socket.send.buffer.bytes=102400
106106
107107
# The receive buffer (SO_RCVBUF) used by the socket server
108-
socket.receive.buffer.bytes=102400
108+
#socket.receive.buffer.bytes=102400
109109
110110
# The maximum size of a request that the socket server will accept (protection against OOM)
111-
socket.request.max.bytes=104857600
111+
#socket.request.max.bytes=104857600
112112
113113
############################# Internal Topic Settings #############################
114114
# The replication factor for the group metadata internal topics "__consumer_offsets" and "__transaction_state"
@@ -149,11 +149,11 @@ data:
149149
#log.retention.bytes=1073741824
150150
151151
# The maximum size of a log segment file. When this size is reached a new log segment will be created.
152-
log.segment.bytes=1073741824
152+
#log.segment.bytes=1073741824
153153
154154
# The interval at which log segments are checked to see if they can be deleted according
155155
# to the retention policies
156-
log.retention.check.interval.ms=300000
156+
#log.retention.check.interval.ms=300000
157157
158158
############################# Zookeeper #############################
159159
@@ -165,7 +165,7 @@ data:
165165
zookeeper.connect=zookeeper:2181
166166
167167
# Timeout in ms for connecting to zookeeper
168-
zookeeper.connection.timeout.ms=6000
168+
#zookeeper.connection.timeout.ms=6000
169169
170170
171171
############################# Group Coordinator Settings #############################
@@ -175,7 +175,7 @@ data:
175175
# The default value for this is 3 seconds.
176176
# We override this to 0 here as it makes for a better out-of-the-box experience for development and testing.
177177
# However, in production environments the default value of 3 seconds is more suitable as this will help to avoid unnecessary, and potentially expensive, rebalances during application startup.
178-
group.initial.rebalance.delay.ms=0
178+
#group.initial.rebalance.delay.ms=0
179179
180180
log4j.properties: |-
181181
# Unspecified loggers and loggers with additivity=true output to server.log and stdout

0 commit comments

Comments
 (0)