tibrewalpratik17 commented on code in PR #13347: URL: https://github.com/apache/pinot/pull/13347#discussion_r1683111727
########## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/BaseTableUpsertMetadataManager.java: ########## @@ -81,6 +81,8 @@ public void init(TableConfig tableConfig, Schema schema, TableDataManager tableD .setPartialUpsertHandler(partialUpsertHandler).setEnableSnapshot(enableSnapshot).setEnablePreload(enablePreload) .setMetadataTTL(metadataTTL).setDeletedKeysTTL(deletedKeysTTL).setConsistencyMode(_consistencyMode) .setUpsertViewRefreshIntervalMs(upsertViewRefreshIntervalMs).setTableIndexDir(tableIndexDir) + .setDropOutOfOrderRecord(upsertConfig.isDropOutOfOrderRecord()) + .setEnableConsistentDeletes(upsertConfig.isEnableConsistentDeletes()) Review Comment: So folks can enable `deletedKeysTTL` without enabling compaction as well. This config is only required when you are enabling deletedKeysTTL + compaction as this entire PR ensures data consistency for this specific scenario. -- 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