junrao commented on code in PR #14903: URL: https://github.com/apache/kafka/pull/14903#discussion_r1417911671
########## core/src/main/scala/kafka/server/BrokerLifecycleManager.scala: ########## @@ -364,10 +377,30 @@ class BrokerLifecycleManager( } _channelManager.sendRequest(new BrokerRegistrationRequest.Builder(data), new BrokerRegistrationResponseHandler()) + communicationInFlight = true } + // the response handler is not invoked from the event handler thread, + // so it is not safe to update state here, instead, schedule an event + // to continue handling the response on the event handler thread private class BrokerRegistrationResponseHandler extends ControllerRequestCompletionHandler { override def onComplete(response: ClientResponse): Unit = { + eventQueue.prepend(new BrokerRegistrationResponseEvent(response, false)) Review Comment: @cmccabe : Do you have concerns on the usage of `prepend` here? ########## core/src/main/scala/kafka/server/BrokerLifecycleManager.scala: ########## @@ -166,6 +166,19 @@ class BrokerLifecycleManager( */ private var registered = false + /** + * True if a request has been sent and a response or timeout has not yet been processed. + * This variable can only be read or written from the event queue thread. + */ + private var communicationInFlight = false Review Comment: Yes, I agree that it's not straightforward. We can just leave the code as it is. -- 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