Skip to content

Commit

Permalink
tsdb: Add multi concurrency and max idle connections store gateway pa…
Browse files Browse the repository at this point in the history
…rams

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
  • Loading branch information
aknuds1 committed Nov 2, 2021
1 parent 92f3b64 commit 34b2fad
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## master / unreleased

* [CHANGE] Store gateway: set `-blocks-storage.bucket-store.index-cache.memcached.max-get-multi-concurrency`,
`-blocks-storage.bucket-store.chunks-cache.memcached.max-get-multi-concurrency`,
`-blocks-storage.bucket-store.metadata-cache.memcached.max-get-multi-concurrency`,
`-blocks-storage.bucket-store.index-cache.memcached.max-idle-connections`,
`-blocks-storage.bucket-store.chunks-cache.memcached.max-idle-connections`,
`-blocks-storage.bucket-store.metadata-cache.memcached.max-idle-connections` to 100 #414
* [CHANGE] Update grafana-builder dependency: use $__rate_interval in qpsPanel and latencyPanel. #372
* [CHANGE] `namespace` template variable in dashboards now only selects namespaces for selected clusters. #311
* [CHANGE] Alertmanager: mounted overrides configmap to alertmanager too. #315
Expand Down
10 changes: 10 additions & 0 deletions cortex/tsdb.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,17 @@
'blocks-storage.bucket-store.index-header-lazy-loading-enabled': 'true',
'blocks-storage.bucket-store.index-header-lazy-loading-idle-timeout': '60m',

local indexMaxConcurrency = 100,
local chunksMaxConcurrency = 100,
local metaMaxConcurrency = 100,
'blocks-storage.bucket-store.max-chunk-pool-bytes': 12 * 1024 * 1024 * 1024,
'blocks-storage.bucket-store.index-cache.memcached.max-get-multi-concurrency': indexMaxConcurrency,
'blocks-storage.bucket-store.chunks-cache.memcached.max-get-multi-concurrency': chunksMaxConcurrency,
'blocks-storage.bucket-store.metadata-cache.memcached.max-get-multi-concurrency': metaMaxConcurrency,
'blocks-storage.bucket-store.index-cache.memcached.max-idle-connections': indexMaxConcurrency,
'blocks-storage.bucket-store.chunks-cache.memcached.max-idle-connections': chunksMaxConcurrency,
'blocks-storage.bucket-store.metadata-cache.memcached.max-idle-connections': metaMaxConcurrency,

} +
$.blocks_chunks_caching_config +
$.blocks_metadata_caching_config +
Expand Down

0 comments on commit 34b2fad

Please sign in to comment.