-
Notifications
You must be signed in to change notification settings - Fork 14.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KAFKA-19047: Broker registrations are slow if previously fenced or shutdown #19296
base: trunk
Are you sure you want to change the base?
Conversation
@@ -353,7 +353,7 @@ public ControllerResult<BrokerRegistrationReply> registerBroker( | |||
if (existing != null) { | |||
prevIncarnationId = existing.incarnationId(); | |||
storedBrokerEpoch = existing.epoch(); | |||
if (heartbeatManager.hasValidSession(brokerId, existing.epoch())) { | |||
if (heartbeatManager.hasValidSession(brokerId, existing.epoch()) && heartbeatManager.isBrokerActive(brokerId)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could we just check if whether existing
is fenced or in controlled shutdown?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks 😅
assertEquals(OptionalLong.of(1000L), clusterControl.heartbeatManager().tracker(). | ||
contactTime(new BrokerIdAndEpoch(1, 200))); | ||
|
||
// even if session is still valid for old brokers, new registrations will succeed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I think the wording here should be something along the lines of:
new registrations should succeed if a broker is fenced or in controlled shutdown, even if the last heartbeat was within the session timeout
Allow registration if prior broker state was fenced or in controlled shutdown.