gianm commented on issue #13540: URL: https://github.com/apache/druid/issues/13540#issuecomment-1344899192
Thanks for the steps to reproduce this! I looked into this and it turns out the issue has to do with: - `segmentGranularity` is provided - the intervals for used segments in the datasource have gaps that are equal to, or larger than, the segment-granular size. Here, you get the error due to the gaps created by deleted segments, and the fact that the compact interval spans these gaps. You should be able to work around it by using an interval that does not span gaps, or by removing `segmentGranularity` (which would preserve the segment granularity of the existing segments). Definitely a bug -- thank you for the report. -- 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]
