-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
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
Allow max rows and max segments for time-ordered scans to be overridden using the scan query JSON spec #7413
Conversation
I think it's more common in Druid to put these types of properties in the query context: |
@jon-wei moved params to query context |
docs/content/querying/scan-query.md
Outdated
|property|description|values|default| | ||
|--------|-----------|------|-------| | ||
|maxRowsQueuedForOrdering|The maximum number of rows returned when time ordering is used. Overrides the identically named config.|An integer in [0, 2147483647]|100000| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default here would be the configured value of druid.query.scan.maxSegmentPartitionsOrderedInMemory
instead of 100000
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 after CI
Fixes #7397. Details are in the proposal.