Files
seaweedfs/weed
Chris LuandGitHub 3f5b4814b7 fix(kafka): evict expired group members on rejoin to unblock fast restart (#9243)
fix(kafka): evict expired group members on JoinGroup and during cleanup

Phantom members lingering past their session timeout were blocking
TestOffsetManagement/ConsumerGroupResumption: the cleanup goroutine
runs every 30s but session timeouts can be as short as 6s, so a lost
LeaveGroup or ungraceful disconnect could leave a dead member holding
the leader slot or a partition until the next cleanup tick. New
consumers rejoining within that window saw stale group composition
and burned all 5 test-level join retries (~118s, generation churned to
22 in the failing CI run).

Add EvictExpiredMembersLocked on GroupCoordinator and call it from
handleJoinGroup so each rejoin sees a fresh member list. Refactor
performCleanup to share the helper, and on either path move surviving
members to PreparingRebalance, bump generation, clear cached
assignments (so the non-leader SyncGroup path returns
REBALANCE_IN_PROGRESS instead of serving stale partitions), re-elect
a leader from survivors when needed, and rebuild SubscribedTopics so
topics only the evicted member subscribed to are dropped.
2026-04-27 09:43:55 -07:00
..
2026-04-10 17:31:14 -07:00
2026-04-10 17:31:14 -07:00
2026-04-14 20:48:24 -07:00
2026-04-23 10:05:51 -07:00
2026-04-26 21:06:39 -07:00