cmccabe commented on code in PR #15270:
URL: https://github.com/apache/kafka/pull/15270#discussion_r1470390923
##########
core/src/main/scala/kafka/server/metadata/BrokerMetadataPublisher.scala:
##########
@@ -166,6 +169,11 @@ class BrokerMetadataPublisher(
Option(delta.featuresDelta()).foreach { featuresDelta =>
featuresDelta.metadataVersionChange().ifPresent{ metadataVersion =>
info(s"Updating metadata.version to
${metadataVersion.featureLevel()} at offset $highestOffsetAndEpoch.")
+ if (currentMetadataVersion.isLessThan(MetadataVersion.IBP_3_7_IV2)
&& metadataVersion.isAtLeast(MetadataVersion.IBP_3_7_IV2)) {
+ info("Resending BrokerRegistration with existing incarnation-id to
inform the " +
+ "controller about log directories in the broker following
metadata update")
Review Comment:
Please list the old and new metadata versions here, thanks!
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]