HA Monolithic configuration #2179
-
Hi! I'm looking to deploy Grafana Mimir in monolithic mode on Kubernetes, horizontally scalable, with S3 as backend (without minio). I made a simple chart that has one statefulset with My question is, do you have a recommended/example configuration of a HA monolithic setup? I rewrote the default one provided by the Helm chart. This is the best I could come up with:
Are there any incorrect or missing options that I should address? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
The Mimir default configuration is already suited for HA and requires to run at least 3 Mimir replicas. I checked your config and you're not changing HA settings, so from an HA perspective it should be good. That being said, I would remove the following config overrides and use the default values:
Finally, you could take a look at our "Play with Grafana Mimir" tutorial, which runs 3 replicas of Mimir in monolithic mode: |
Beta Was this translation helpful? Give feedback.
-
Having checked both this config and the tutorial configs, I have an additional question. |
Beta Was this translation helpful? Give feedback.
The Mimir default configuration is already suited for HA and requires to run at least 3 Mimir replicas. I checked your config and you're not changing HA settings, so from an HA perspective it should be good.
That being said, I would remove the following config overrides and use the default values:
Finally, you could …