gianm commented on issue #12761: URL: https://github.com/apache/druid/issues/12761#issuecomment-1179480722
I was able to reproduce this on my machine: thanks @qoega for the detailed guidance. The problem was a race that can occur while a query is canceling itself due to lack of disk scratch space. (10000 is quite small value for maxOnDiskStorage: it is in bytes.) This patch fixes it: https://github.com/apache/druid/pull/12764. The proper behavior here, after applying that patch, would be to report this error: > Not enough disk space to execute this query. Try raising druid.query.groupBy.maxOnDiskStorage. With higher `druid.query.groupBy.maxOnDiskStorage` the query succeeds. -- 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]
