-
Notifications
You must be signed in to change notification settings - Fork 823
Add active series limit for nativeHistogram samples #6796
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
base: master
Are you sure you want to change the base?
Changes from all commits
4f66785
710de24
20bbde4
24e6573
580b7a1
ab7970d
1085c91
555c6c1
6a5e237
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3606,6 +3606,11 @@ The `limits_config` configures default and per-tenant limits imposed by Cortex s | |
# CLI flag: -ingester.max-series-per-metric | ||
[max_series_per_metric: <int> | default = 50000] | ||
|
||
# The maximum number of active native histogram series per user, per ingester. 0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add to the description that this limit needs active series tracker to be enabled. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks updated. |
||
# to disable. Supported only if ingester.active-series-metrics-enabled is true. | ||
# CLI flag: -ingester.max-native-histogram-series-per-user | ||
[max_native_histogram_series_per_user: <int> | default = 0] | ||
|
||
# The maximum number of active series per user, across the cluster before | ||
# replication. 0 to disable. Supported only if -distributor.shard-by-all-labels | ||
# is true. | ||
|
@@ -3617,6 +3622,13 @@ The `limits_config` configures default and per-tenant limits imposed by Cortex s | |
# CLI flag: -ingester.max-global-series-per-metric | ||
[max_global_series_per_metric: <int> | default = 0] | ||
|
||
# The maximum number of active native histogram series per user, across the | ||
# cluster before replication. 0 to disable. Supported only if | ||
# -distributor.shard-by-all-labels and ingester.active-series-metrics-enabled is | ||
# true. | ||
# CLI flag: -ingester.max-global-native-histogram-series-per-user | ||
[max_global_native_histogram_series_per_user: <int> | default = 0] | ||
|
||
# [Experimental] Enable limits per LabelSet. Supported limits per labelSet: | ||
# [max_series] | ||
[limits_per_label_set: <list of LimitsPerLabelSet> | default = []] | ||
|
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 changelog item needs to be grouped with other enhancement items
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. Updated.