praveenc7 opened a new pull request, #17433: URL: https://github.com/apache/pinot/pull/17433
## Summary https://github.com/apache/pinot/issues/17432 ## Problem When a broker restarts (especially on a different pod/host with different intended tags), it connects to Helix with stale tags from the previous run. The original code only updated tags for brand new brokers (`if (instanceTags.isEmpty())`), leaving restarted brokers with incorrect tags that can cause traffic misrouting. ## Proposal Added a method that runs on every broker startup to compare configured tags with Helix tags and updates them if they differ. This ensures brokers always announce with the correct tags, regardless of restart scenarios. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
