This repository was archived by the owner on Apr 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 281281 // ingester limits are 6s (#replicas) / 3x (#replication factor) higher.
282282 //
283283 // extra_small_user: {
284- // ingestion_rate: 60 ,000
285- // ingestion_burst_size: 600 ,000
284+ // ingestion_rate: 10 ,000
285+ // ingestion_burst_size: 200 ,000
286286 //
287287 // max_series_per_user: 0 (disabled)
288288 // max_series_per_metric: 0 (disabled)
289289 //
290- // max_global_series_per_user: 600 ,000
291- // max_global_series_per_metric: 60 ,000
290+ // max_global_series_per_user: 100 ,000
291+ // max_global_series_per_metric: 20 ,000
292292 //
293293 // max_series_per_query: 10,000
294294 // max_samples_per_query: 100,000
Original file line number Diff line number Diff line change 2929 'server.grpc.keepalive.max-connection-idle' : '1m' ,
3030
3131 'distributor.ingestion-rate-limit-strategy' : 'global' ,
32- 'distributor.ingestion-rate-limit' : 60000 , // 60K
33- 'distributor.ingestion-burst-size' : 600000 , // 600K
32+ 'distributor.ingestion-rate-limit' : 10000 , // 10K
33+ 'distributor.ingestion-burst-size' : 200000 , // 200k
3434
3535 // The ingestion rate global limit requires the distributors to form a ring.
3636 'distributor.ring.consul.hostname' : 'consul.%s.svc.cluster.local:8500' % $._config.namespace,
Original file line number Diff line number Diff line change 2222
2323 // Limits config.
2424 'ingester.max-chunk-idle' : $._config.max_chunk_idle,
25- 'ingester.max-global-series-per-user' : 600000 , // 600K
26- 'ingester.max-global-series-per-metric' : 60000 , // 60K
25+ 'ingester.max-global-series-per-user' : 100000 , // 100K
26+ '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
2929 'limits.per-user-override-config' : '/etc/cortex/overrides.yaml' ,
You can’t perform that action at this time.
0 commit comments