deepthi912 commented on code in PR #15829: URL: https://github.com/apache/pinot/pull/15829#discussion_r2106058734
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/PinotHelixResourceManager.java: ########## @@ -3860,7 +3862,9 @@ private String updateSegmentTargetTier(String tableNameWithType, String segmentN } // Update the tier in segment ZK metadata and write it back to ZK. segmentZKMetadata.setTier(targetTierName); - updateZkMetadata(tableNameWithType, segmentZKMetadata, segmentMetadataZNRecord.getVersion()); + if (!enableParallelPushProtection) { + updateZkMetadata(tableNameWithType, segmentZKMetadata, segmentMetadataZNRecord.getVersion()); Review Comment: Yes when `enableParallelPushProtection` set to true, the updates are being handled in ZKOperator class. -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org