Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add multi-zone support to jsonnet #1352

Merged
merged 6 commits into from
Mar 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@

### Jsonnet

* [CHANGE] Disabled `-ingester.readiness-check-ring-health`. #1352
* [FEATURE] Added multi-zone ingesters and store-gateways support. #1352

### Mimirtool

* [CHANGE] `analyse` command has been renamed to `analyze`. #1318
Expand Down
1 change: 1 addition & 0 deletions operations/mimir-tests/test-defaults-generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1009,6 +1009,7 @@ spec:
- -distributor.health-check-ingesters=true
- -ingester.max-global-series-per-metric=20000
- -ingester.max-global-series-per-user=150000
- -ingester.readiness-check-ring-health=false
- -ingester.ring.consul.hostname=consul.default.svc.cluster.local:8500
- -ingester.ring.heartbeat-period=15s
- -ingester.ring.heartbeat-timeout=10m
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1327,6 +1327,7 @@ spec:
- -distributor.health-check-ingesters=true
- -ingester.max-global-series-per-metric=20000
- -ingester.max-global-series-per-user=150000
- -ingester.readiness-check-ring-health=false
- -ingester.ring.consul.hostname=consul.default.svc.cluster.local:8500
- -ingester.ring.heartbeat-period=15s
- -ingester.ring.heartbeat-timeout=10m
Expand Down
1 change: 1 addition & 0 deletions operations/mimir-tests/test-gossip-generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1368,6 +1368,7 @@ spec:
- -distributor.health-check-ingesters=true
- -ingester.max-global-series-per-metric=20000
- -ingester.max-global-series-per-user=150000
- -ingester.readiness-check-ring-health=false
- -ingester.ring.heartbeat-period=15s
- -ingester.ring.heartbeat-timeout=10m
- -ingester.ring.num-tokens=512
Expand Down
Loading