cecemei commented on code in PR #18950: URL: https://github.com/apache/druid/pull/18950#discussion_r2760503834
########## processing/src/main/java/org/apache/druid/java/util/common/granularity/Granularities.java: ########## @@ -57,6 +57,7 @@ public class Granularities public static final Granularity FIFTEEN_MINUTE = GranularityType.FIFTEEN_MINUTE.getDefaultGranularity(); public static final Granularity THIRTY_MINUTE = GranularityType.THIRTY_MINUTE.getDefaultGranularity(); public static final Granularity HOUR = GranularityType.HOUR.getDefaultGranularity(); + public static final Granularity THREE_HOUR = GranularityType.THREE_HOUR.getDefaultGranularity(); Review Comment: added this for the test because compaction task automatically picks the finest gran (hourly) if it's not specified, but msq runner can only process one interval per task (there's 3 hours). -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
