We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to execute a Druid GroupBy query where we get back all rows? Looks like there's currently a defaultMaximumMaxRows value.
defaultMaximumMaxRows
maha/core/src/main/scala/com/yahoo/maha/core/query/druid/DruidQueryGenerator.scala
Line 158 in d6b48f2
The text was updated successfully, but these errors were encountered:
Last I checked Druid had a limit on the number of rows that can be sent from historical to broker and it didn't support pagination.
Sorry, something went wrong.
You can pass in your own value, see register method:
Line 166 in d6b48f2
in the case of returning large rows, you might want to use OffHeapRowList #675
No branches or pull requests
Is there a way to execute a Druid GroupBy query where we get back all rows? Looks like there's currently a
defaultMaximumMaxRows
value.maha/core/src/main/scala/com/yahoo/maha/core/query/druid/DruidQueryGenerator.scala
Line 158 in d6b48f2
The text was updated successfully, but these errors were encountered: