Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 2624c08

Browse files
authored
Merge branch 'main' into lower-ingester-restarts-severity
2 parents bd0dad6 + bf9729e commit 2624c08

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* [CHANGE] Alertmanager: mounted overrides configmap to alertmanager too. #315
77
* [CHANGE] Memcached: upgraded memcached from `1.5.17` to `1.6.9`. #316
88
* [CHANGE] `CortexIngesterRestarts` alert severity changed from `critical` to `warning`. #321
9+
* [CHANGE] Store-gateway: increased memory request and limit respectively from 6GB / 6GB to 12GB / 18GB. #322
10+
* [CHANGE] Store-gateway: increased `-blocks-storage.bucket-store.max-chunk-pool-bytes` from 2GB (default) to 12GB. #322
911
* [ENHANCEMENT] cortex-mixin: Make `cluster_namespace_deployment:kube_pod_container_resource_requests_{cpu_cores,memory_bytes}:sum` backwards compatible with `kube-state-metrics` v2.0.0. #317
1012
* [BUGFIX] Fixed `CortexIngesterHasNotShippedBlocks` alert false positive in case an ingester instance had ingested samples in the past, then no traffic was received for a long period and then it started receiving samples again. #308
1113

@@ -29,6 +31,7 @@
2931
* `CortexIngesterReachingTenantsLimit`
3032
* [ENHANCEMENT] Improved `CortexRulerFailedRingCheck` to avoid firing in case of very short errors. #297
3133
* [BUGFIX] Fixed `CortexCompactorRunFailed` false positives. #288
34+
* [BUGFIX] Add missing components (admin-api, compactor, store-gateway) to `CortexGossipMembersMismatch`. #305
3235

3336
## 1.8.0 / 2021-03-25
3437

cortex-mixin/alerts/alerts.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@
586586
expr: |||
587587
memberlist_client_cluster_members_count
588588
!= on (%s) group_left
589-
sum by (%s) (up{job=~".+/(distributor|ingester.*|querier|cortex|ruler)"})
589+
sum by (%s) (up{job=~".+/(admin-api|compactor|store-gateway|distributor|ingester.*|querier|cortex|ruler)"})
590590
||| % [$._config.alert_aggregation_labels, $._config.alert_aggregation_labels],
591591
'for': '5m',
592592
labels: {

cortex/tsdb.libsonnet

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,8 @@
216216
// Block index-headers are pre-downloaded but lazy mmaped and loaded at query time.
217217
'blocks-storage.bucket-store.index-header-lazy-loading-enabled': 'true',
218218
'blocks-storage.bucket-store.index-header-lazy-loading-idle-timeout': '60m',
219+
220+
'blocks-storage.bucket-store.max-chunk-pool-bytes': 12 * 1024 * 1024 * 1024,
219221
} +
220222
$.blocks_chunks_caching_config +
221223
$.blocks_metadata_caching_config +
@@ -228,8 +230,8 @@
228230
container.withPorts($.store_gateway_ports) +
229231
container.withArgsMixin($.util.mapToFlags($.store_gateway_args)) +
230232
container.withVolumeMountsMixin([volumeMount.new('store-gateway-data', '/data')]) +
231-
$.util.resourcesRequests('1', '6Gi') +
232-
$.util.resourcesLimits(null, '6Gi') +
233+
$.util.resourcesRequests('1', '12Gi') +
234+
$.util.resourcesLimits(null, '18Gi') +
233235
$.util.readinessProbe +
234236
$.jaeger_mixin,
235237

0 commit comments

Comments
 (0)