Skip to content
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

Open
wants to merge 3 commits into
base: trunk
Choose a base branch
from

Conversation

ahuang98
Copy link
Contributor

@ahuang98 ahuang98 commented Mar 27, 2025

Allow registration if prior broker state was fenced or in controlled shutdown.

@github-actions github-actions bot added triage PRs from the community kraft labels Mar 27, 2025
@@ -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)) {
Copy link
Contributor

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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks 😅

@ahuang98 ahuang98 changed the title Allow re-registration for fenced / cleanly shutdown brokers KAFKA-19047: Broker registrations are slow if previously fenced or shutdown Mar 27, 2025
@github-actions github-actions bot removed the triage PRs from the community label Mar 27, 2025
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
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants