-
Notifications
You must be signed in to change notification settings - Fork 807
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
Update arguments.md #6460
Update arguments.md #6460
Conversation
885d581
to
c4cf739
Compare
Removed obsolete `-promql.lookback-delta` option (deprecated since Cortex 1.2, replaced with `-querier.lookback-delta`). #3144 Signed-off-by: Charlie Le <[email protected]> Signed-off-by: Charlie Le <[email protected]>
...interval` Query-frontend: removed `-querier.split-queries-by-day` (deprecated in Cortex 0.4.0). Please use `-querier.split-queries-by-interval` instead. #3813 Signed-off-by: Charlie Le <[email protected]>
Flag `ingester.max-samples-per-query` was removed in #4812 as part of the chunk storage removal. Signed-off-by: Charlie Le <[email protected]>
Removed in 73567bc#diff-ed3c6bb08ff3f85373c673fd92d1429599243584fc46d51a3221782263f26821L130 Signed-off-by: Charlie Le <[email protected]>
9a7614d
to
3582b34
Compare
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.
Thanks for doing this
docs/configuration/arguments.md
Outdated
@@ -63,7 +63,7 @@ The next three options only apply when the querier is used together with the Que | |||
|
|||
If set to true, will cause the query frontend to mutate incoming queries and align their start and end parameters to the step parameter of the query. This improves the cacheability of the query results. | |||
|
|||
- `-querier.split-queries-by-day` | |||
- `-querier.split-queries-by-interval` | |||
|
|||
If set to true, will cause the query frontend to split multi-day queries into multiple single-day queries and execute them in parallel. |
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.
this flag should be set to 24h multiples. "If set to true" is not valid
docs/configuration/arguments.md
Outdated
@@ -393,9 +393,7 @@ Valid per-tenant limits are (with their corresponding flags for default values): | |||
|
|||
- `max_series_per_query` / `-ingester.max-series-per-query` |
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.
this is deprecated. The new one is -querier.max-fetched-series-per-query and is enforced at queriers,ruler and store-gateways
Signed-off-by: Charlie Le <[email protected]>
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.
Thanks!
Removed obsolete
-promql.lookback-delta
option (deprecated since Cortex 1.2, replaced with-querier.lookback-delta
). #3144