brandboat opened a new pull request, #20748: URL: https://github.com/apache/kafka/pull/20748
In StreamsGroupHeartbeatRequestManager and AbstractHeartbeatRequestManager we use max.poll.interval.ms (default 300000) as the jitter value. Although RequestState.remainingBackoffMs guards with Math.max(0, …), which won’t make the value become negative, using a jitter that isn’t in (0–1) is unexpected. In addition, we should validate that ExponentialBackoff receives a jitter strictly within (0, 1) to prevent this scenario in the future. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
