ahuang98 commented on code in PR #19454: URL: https://github.com/apache/kafka/pull/19454#discussion_r2040390910
########## metadata/src/main/java/org/apache/kafka/controller/ClusterControlManager.java: ########## @@ -309,8 +309,10 @@ public void activate() { long nowNs = time.nanoseconds(); for (BrokerRegistration registration : brokerRegistrations.values()) { heartbeatManager.register(registration.id(), registration.fenced()); - heartbeatManager.tracker().updateContactTime( - new BrokerIdAndEpoch(registration.id(), registration.epoch()), nowNs); + if (!registration.fenced()) { + heartbeatManager.tracker().updateContactTime( Review Comment: what do you think about removing the session completely on controlled shutdown? e.g. https://github.com/apache/kafka/pull/19428/files#diff-a52da12861f5f9722a73c354a650e4b9af3e7ccce560d7e0d1e67c299e000b58R1631 -- 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