HighLevelConsumer throw FailedToRebalanceConsumerError: NODE_EXISTS when rebalancing #981
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
env
reproduce:
consumerChanged
, rebalancing andrebalanceAttempt
:rebalanceAttempt
:FailedToRebalanceConsumerError
:NODE_EXISTS
rebalanceAttempt
result:
consumer1 is owner of partition3 in ZK and never consume partition3, but only own partition4 in memory
topicPayloads
.consumer2 cannot complete the rebalance process and throw
FailedToRebalanceConsumerError
, beacuse the owner node in ZK exists which created by consumer1.solution:
If a tp update ZK failed when rebalanceAttempt, release the tp which already updated success. In another word, when the long rebalancing process failed, some ZK updated need to rollback.
The PR has proved could solved the issues in our product env,and all consumers is working, all partitions is consuming~
about testcase:
Sorry for missing it. The simulation reappeared is difficult. Glad to see someone would add it, thanks.
Fixes #487 #449