Skip to content

Update large-clusters.md #1477

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

Merged
merged 1 commit into from
Jun 4, 2025
Merged
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
23 changes: 12 additions & 11 deletions docs/admin/config/large-clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ To increase the number of replicas, run:
To increase the number of replicas, use the following Run:ai control-plane helm flags

```bash
--set backend.autoscaling.enabled=true
--set frontend.autoscaling.enabled=true
--set grafana.autoscaling.enabled=true --set grafana.autoscaling.minReplicas=2
--set backend.autoscaling.enabled=true \
--set frontend.autoscaling.enabled=true \
--set grafana.autoscaling.enabled=true \
--set grafana.autoscaling.minReplicas=2
```

!!! Important
Expand All @@ -30,14 +31,14 @@ To increase the number of replicas, use the following Run:ai control-plane helm
[Thanos](https://thanos.io/){target=_blank} is the 3rd party used by Run:ai to store metrics Under a significant user load, we would also need to increase resources for the Thanos query function. Use the following Run:ai control-plane helm flags:

```bash
--set thanos.query.resources.limits.memory=3G
--set thanos.query.resources.requests.memory=3G
--set thanos.query.resources.limits.cpu=1
--set thanos.query.resources.requests.cpu=1

--set thanos.receive.resources.limits.memory=6G
--set thanos.receive.resources.requests.memory=6G
--set thanos.receive.resources.limits.cpu=1
--set thanos.query.resources.limits.memory=3G \
--set thanos.query.resources.requests.memory=3G \
--set thanos.query.resources.limits.cpu=1 \
--set thanos.query.resources.requests.cpu=1 \

--set thanos.receive.resources.limits.memory=6G \
--set thanos.receive.resources.requests.memory=6G \
--set thanos.receive.resources.limits.cpu=1 \
--set thanos.receive.resources.requests.cpu=1
```

Expand Down