Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit c14c9a2

Browse files
authored
Merge pull request #186 from grafana/bump-limit
Bump default series limit by 50%
2 parents 8f9815a + 548e7ac commit c14c9a2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

cortex/config.libsonnet

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,8 @@
287287
// max_series_per_user: 0 (disabled)
288288
// max_series_per_metric: 0 (disabled)
289289
//
290-
// max_global_series_per_user: 100,000
290+
// // Our limit should be 100k, but we need some room of about ~50% to take rollouts into account
291+
// max_global_series_per_user: 150,000
291292
// max_global_series_per_metric: 20,000
292293
//
293294
// max_series_per_query: 10,000

cortex/ingester.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
// Limits config.
2424
'ingester.max-chunk-idle': $._config.max_chunk_idle,
25-
'ingester.max-global-series-per-user': 100000, // 100K
25+
'ingester.max-global-series-per-user': 150000, // 150K
2626
'ingester.max-global-series-per-metric': 20000, // 20K
2727
'ingester.max-series-per-user': 0, // Disabled in favour of the max global limit
2828
'ingester.max-series-per-metric': 0, // Disabled in favour of the max global limit

0 commit comments

Comments
 (0)