9aman commented on code in PR #15142: URL: https://github.com/apache/pinot/pull/15142#discussion_r1974943911
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/retention/RetentionManager.java: ########## @@ -124,8 +138,19 @@ private void manageRetentionForTable(TableConfig tableConfig) { } private void manageRetentionForOfflineTable(String offlineTableName, RetentionStrategy retentionStrategy) { + List<SegmentZKMetadata> segmentZKMetadataList = _pinotHelixResourceManager.getSegmentsZKMetadata(offlineTableName); Review Comment: The deletion occurs based on the `endTime` present in the segmentZKMetadata. That's why the isPurgeable relies on segmentZKMetadata to decide whether we need to remove a segment or not. Are you suggesting some other approach where we move away from endTime of the segment? -- 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