klsince commented on code in PR #14094: URL: https://github.com/apache/pinot/pull/14094#discussion_r1779270018
########## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/ConcurrentMapPartitionUpsertMetadataManager.java: ########## @@ -192,19 +192,8 @@ public void doRemoveExpiredPrimaryKeys() { AtomicInteger numTotalKeysMarkForDeletion = new AtomicInteger(); AtomicInteger numDeletedKeysWithinTTLWindow = new AtomicInteger(); double largestSeenComparisonValue = _largestSeenComparisonValue.get(); - double metadataTTLKeysThreshold; - if (_metadataTTL > 0) { - metadataTTLKeysThreshold = largestSeenComparisonValue - _metadataTTL; - } else { - metadataTTLKeysThreshold = Double.MIN_VALUE; - } - double deletedKeysThreshold; - if (_deletedKeysTTL > 0) { - deletedKeysThreshold = largestSeenComparisonValue - _deletedKeysTTL; - } else { - deletedKeysThreshold = Double.MIN_VALUE; - } - + double metadataTTLKeysThreshold = _metadataTTL > 0 ? largestSeenComparisonValue - _metadataTTL : 0; + double deletedKeysThreshold = _deletedKeysTTL > 0 ? largestSeenComparisonValue - _deletedKeysTTL : 0; Review Comment: sgtm, set to NEGATIVE_INFINITY -- 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