diff --git a/docs/upgrade.html b/docs/upgrade.html index 2b62a2b82be..6487a621e4a 100644 --- a/docs/upgrade.html +++ b/docs/upgrade.html @@ -70,6 +70,12 @@
  • Added user headers support through a new Headers interface providing user headers read and write access.
  • ProducerRecord and ConsumerRecord expose the new Headers API via Headers headers() method call.
  • ExtendedSerializer and ExtendedDeserializer interfaces are introduced to support serialization and deserialization for headers. Headers will be ignored if the configured serializer and deserializer are not the above classes.
  • +
  • A new config,group.initial.rebalance.delay.ms, was introduced. + This config specifies the time, in milliseconds, that the GroupCoordinator will delay the initial consumer rebalance. + 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. + The default value for this is 3 seconds. + During development and testing it might be desirable to set this to 0 inorder to not delay test execution time. +
  • New Protocol Versions