This repository was archived by the owner on Apr 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11
11
* [ FEATURE] Added "Cortex / Slow queries" dashboard based on Loki logs. #271
12
12
* [ ENHANCEMENT] Add ` EtcdAllocatingTooMuchMemory ` alert for monitoring etcd memory usage. #261
13
13
* [ ENHANCEMENT] Sort legend descending in the CPU/memory panels. #271
14
+ * [ ENHANCEMENT] Add config option to enable streaming of chunks in block-based ingesters. #276
14
15
* [ BUGFIX] Fixed ` CortexQuerierHighRefetchRate ` alert. #268
15
16
16
17
## 1.7.0 / 2021-02-24
Original file line number Diff line number Diff line change 433
433
enable_pod_priorities: true ,
434
434
435
435
alertmanager_enabled: false ,
436
+
437
+ // Enables streaming of chunks from ingesters using blocks.
438
+ ingester_stream_chunks_when_using_blocks: true ,
436
439
},
437
440
438
441
local configMap = $.core.v1.configMap,
441
444
configMap.new($._config.overrides_configmap) +
442
445
configMap.withData({
443
446
'overrides.yaml' : $.util.manifestYaml(
444
- {
445
- overrides: $._config.overrides,
446
- } + if std.length ($._config.multi_kv_config) > 0 then {
447
- multi_kv_config: $._config.multi_kv_config,
448
- } else {}
447
+ { overrides: $._config.overrides }
448
+ + (if std.length ($._config.multi_kv_config) > 0 then { multi_kv_config: $._config.multi_kv_config } else {})
449
+ + (if $._config.ingester_stream_chunks_when_using_blocks then { ingester_stream_chunks_when_using_blocks: true } else {})
449
450
),
450
451
}),
451
452
You can’t perform that action at this time.
0 commit comments