File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master / unreleased
4
4
5
+ * [ CHANGE] Store gateway: set ` -blocks-storage.bucket-store.index-cache.memcached.max-get-multi-concurrency ` ,
6
+ ` -blocks-storage.bucket-store.chunks-cache.memcached.max-get-multi-concurrency ` ,
7
+ ` -blocks-storage.bucket-store.metadata-cache.memcached.max-get-multi-concurrency ` ,
8
+ ` -blocks-storage.bucket-store.index-cache.memcached.max-idle-connections ` ,
9
+ ` -blocks-storage.bucket-store.chunks-cache.memcached.max-idle-connections ` ,
10
+ ` -blocks-storage.bucket-store.metadata-cache.memcached.max-idle-connections ` to 100 #414
5
11
* [ CHANGE] Update grafana-builder dependency: use $__ rate_interval in qpsPanel and latencyPanel. #372
6
12
* [ CHANGE] ` namespace ` template variable in dashboards now only selects namespaces for selected clusters. #311
7
13
* [ CHANGE] Alertmanager: mounted overrides configmap to alertmanager too. #315
Original file line number Diff line number Diff line change 222
222
'blocks-storage.bucket-store.index-header-lazy-loading-enabled' : 'true' ,
223
223
'blocks-storage.bucket-store.index-header-lazy-loading-idle-timeout' : '60m' ,
224
224
225
+ local indexMaxConcurrency = 100 ,
226
+ local chunksMaxConcurrency = 100 ,
227
+ local metaMaxConcurrency = 100 ,
225
228
'blocks-storage.bucket-store.max-chunk-pool-bytes' : 12 * 1024 * 1024 * 1024 ,
229
+ 'blocks-storage.bucket-store.index-cache.memcached.max-get-multi-concurrency' : indexMaxConcurrency,
230
+ 'blocks-storage.bucket-store.chunks-cache.memcached.max-get-multi-concurrency' : chunksMaxConcurrency,
231
+ 'blocks-storage.bucket-store.metadata-cache.memcached.max-get-multi-concurrency' : metaMaxConcurrency,
232
+ 'blocks-storage.bucket-store.index-cache.memcached.max-idle-connections' : indexMaxConcurrency,
233
+ 'blocks-storage.bucket-store.chunks-cache.memcached.max-idle-connections' : chunksMaxConcurrency,
234
+ 'blocks-storage.bucket-store.metadata-cache.memcached.max-idle-connections' : metaMaxConcurrency,
235
+
226
236
} +
227
237
$.blocks_chunks_caching_config +
228
238
$.blocks_metadata_caching_config +
You can’t perform that action at this time.
0 commit comments