jtao15 commented on code in PR #10387: URL: https://github.com/apache/pinot/pull/10387#discussion_r1135971780
########## pinot-plugins/pinot-minion-tasks/pinot-minion-builtin-tasks/src/main/java/org/apache/pinot/plugin/minion/tasks/mergerollup/MergeRollupTaskGenerator.java: ########## @@ -275,12 +289,21 @@ public List<PinotTaskConfig> generateTasks(List<TableConfig> tableConfigs) { } _tableLowestLevelMaxValidBucketEndTimeMs.put(tableNameWithType, lowestLevelMaxValidBucketEndTimeMs); } - // Create delay metrics even if there's no task scheduled, this helps the case that the controller is restarted + // Create metrics even if there's no task scheduled, this helps the case that the controller is restarted // but the metrics are not available until the controller schedules a valid task - createOrUpdateDelayMetrics(tableNameWithType, mergeLevel, null, watermarkMs, bufferMs, bucketMs); - if (!isValidBucketEndTime(bucketEndMs, bufferMs, lowerMergeLevel, mergeRollupTaskMetadata)) { - LOGGER.info("Bucket with start: {} and end: {} (table : {}, mergeLevel : {}) cannot be merged yet", - bucketStartMs, bucketEndMs, tableNameWithType, mergeLevel); + List<String> sortedMergeLevels = + sortedMergeLevelConfigs.stream().map(e -> e.getKey()).collect(Collectors.toList()); + if (processAll) { Review Comment: 1. For the original mode, numBuckets will be the same as the delayInNumBuckets. 2. For `processAll` mode, we can just use numBuckets to alert on "no activity for a long time"? delayInNumBuckets/watermark won't reflect the correct backlog if there are some buckets processed but don't change the watermark. @snleee wdyt? -- 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