You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# We want to expire kafka broker sessions quickly when brokers die b/c we restart them quickly
147
161
zookeeper.session.timeout.ms=500
162
+
163
+
164
+
############################# Group Coordinator Settings #############################
165
+
166
+
# The following configuration specifies the time, in milliseconds, that the GroupCoordinator will delay the initial consumer rebalance.
167
+
# The rebalance will be further delayed by the value of group.initial.rebalance.delay.ms as new members join the group, up to a maximum of max.poll.interval.ms.
168
+
# The default value for this is 3 seconds.
169
+
# We override this to 0 here as it makes for a better out-of-the-box experience for development and testing.
170
+
# 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.
# We want to expire kafka broker sessions quickly when brokers die b/c we restart them quickly
147
161
zookeeper.session.timeout.ms=500
162
+
163
+
164
+
############################# Group Coordinator Settings #############################
165
+
166
+
# The following configuration specifies the time, in milliseconds, that the GroupCoordinator will delay the initial consumer rebalance.
167
+
# The rebalance will be further delayed by the value of group.initial.rebalance.delay.ms as new members join the group, up to a maximum of max.poll.interval.ms.
168
+
# The default value for this is 3 seconds.
169
+
# We override this to 0 here as it makes for a better out-of-the-box experience for development and testing.
170
+
# 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.
0 commit comments