Skip to content

SYSTEM Cited by 1 source

Grafana Mimir

Grafana Mimir (grafana.com/docs/mimir) is Grafana Labs' open-source horizontally-scalable Prometheus-compatible metrics database. Originally forked from Cortex and subsequently rearchitected.

Why it's on this wiki

Mimir's recent rearchitecture is the explicit architectural template for Pyroscope 2.0 and is part of the same pattern Grafana Labs is applying across its observability stack. Per the Pyroscope 2.0 launch post:

"Mimir recently redesigned its architecture to eliminate write-path replication, decouple reads from writes, and make object storage the single source of truth. Pyroscope 2.0 applies similar architectural principles, adapted for the unique characteristics of profiling data."

(Source: sources/2026-04-22-grafana-introducing-pyroscope-2-0)

The three architectural moves

  1. Eliminate write-path replication. No more N-way replication across ingesters on the ingest hot path. Durability is delegated to object storage.
  2. Decouple reads from writes. Independent tiers; scale each according to its own workload.
  3. Object storage as the single source of truth. Compute-storage separation; ingesters become stateless batch-buffers, queriers read directly from object storage.

These are the same moves now applied to Pyroscope 2.0 (profiling) and in progress for Loki (logs). See patterns/observability-db-rearchitecture-cortex-to-object-store for the unifying pattern.

Seen in

Future ingest candidates

The Mimir rearchitecture blog post ("The next generation of Grafana Mimir: Inside Mimir's redesigned architecture for increased reliability") is linked from the Pyroscope 2.0 post and contains the quantitative benchmarks this page could cite directly. Worth ingesting as a dedicated source.

Last updated · 517 distilled / 1,221 read