showuon commented on a change in pull request #11451: URL: https://github.com/apache/kafka/pull/11451#discussion_r746622616
########## File path: clients/src/main/java/org/apache/kafka/clients/consumer/internals/AbstractCoordinator.java ########## @@ -443,7 +443,9 @@ boolean joinGroupIfNeeded(final Timer timer) { stateSnapshot = this.state; } - if (!generationSnapshot.equals(Generation.NO_GENERATION) && stateSnapshot == MemberState.STABLE) { + if ((generationSnapshot.generationId != Generation.NO_GENERATION.generationId || + !generationSnapshot.memberId.equals(Generation.NO_GENERATION.memberId)) && + stateSnapshot == MemberState.STABLE) { Review comment: Before this change, we'll always reset generation object to `NO_GENERATION`, but now, we'll have some cases that only reset generation ID. This check is after rebalance complete, consumer should have a valid generation ID in this moment, so, no generation ID (i.e. -1) also means the consumer needs to rejoin group. Change the if condition here. -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org