Skip to content

Commit 63f0dd0

Browse files
committed
Increased max connections for memcached chunks and index-queries too
Signed-off-by: Marco Pracucci <[email protected]>
1 parent a70c931 commit 63f0dd0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* [CHANGE] Increased `CortexIngesterReachingSeriesLimit` warning threshold from 70% to 80% and critical threshold from 85% to 90%. #404
4242
* [CHANGE] Rename ruler_s3_bucket_name and ruler_gcs_bucket_name to ruler_storage_bucket_name: #415
4343
* [CHANGE] Fine-tuned rolling update policy for distributor, querier, query-frontend, query-scheduler. #420
44-
* [CHANGE] Increased memcached-metadata max connections from 4k to 16k. #420
44+
* [CHANGE] Increased memcached metadata/chunks/index-queries max connections from 4k to 16k. #420
4545
* [CHANGE] Disabled step alignment in query-frontend to be compliant with PromQL. #420
4646
* [CHANGE] Do not limit compactor CPU and request a number of cores equal to the configured concurrency. #420
4747
* [ENHANCEMENT] Add overrides config to compactor. This allows setting retention configs per user. #386

cortex/memcached.libsonnet

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ memcached {
3434
$.memcached {
3535
name: 'memcached-index-queries',
3636
max_item_size: '%dm' % [$._config.memcached_index_queries_max_item_size_mb],
37+
connection_limit: 16384,
3738
}
3839
else {},
3940

@@ -54,7 +55,7 @@ memcached {
5455
// Save memory by more tightly provisioning memcached chunks.
5556
memory_limit_mb: 6 * 1024,
5657
overprovision_factor: 1.05,
57-
connection_limit: 4096,
58+
connection_limit: 16384,
5859

5960
local container = $.core.v1.container,
6061
}

0 commit comments

Comments
 (0)