rohangarg commented on issue #13182: URL: https://github.com/apache/druid/issues/13182#issuecomment-1271291202
@sh-vs : Are you using null-compatible mode in your cluster? (setting `druid.generic.useDefaultValueForNull` to `false` enables null-compatible mode). If so, then the query you mentioned would get fixed by https://github.com/apache/druid/pull/12944/files which is present as a part of 24.0 release. @gianm : Yes while looking at the issue and changes above, I had observed that the time buckets generation for time-granularity queries could be improved. One crude way of stopping time-grain generation going out of hand is to limit the amount of grains allowed to be generated by the query. A better but effort requiring way could be to derive the time-grains from data as we read it, instead of generating the time buckets first and then passing data through it. -- 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]
