-
Notifications
You must be signed in to change notification settings - Fork 20
Closed
Labels
existing-prThere is PR which soon fix the issue.There is PR which soon fix the issue.
Description
Problem: Stop-the-world rebalances
When scaling consumers up or down, a rebalance is triggered. Depending on the partition assignment strategy, this can pause all consumers for about 30 seconds, leading to temporary downtime. This “stop-the-world” effect makes scaling disruptive in production environments.
Proposed solutions
- KIP-429 CooperativeStickyAssignor: Introduces incremental cooperative rebalancing by reassigning partitions gradually, so not all consumers are paused at once.
- KIP-848 New consumer rebalancing protocol: Moves partition assignment decisions to the broker and provides incremental rebalancing by default. Shipped with Kafka 4.0, it effectively supersedes KIP-429.
Metadata
Metadata
Assignees
Labels
existing-prThere is PR which soon fix the issue.There is PR which soon fix the issue.