CephVIII · MonitorsMonitors
Cluster maps in detail — what each one holds and who reads it
What you'll learn
- Enumerate the contents of each map component
- Identify which daemons and clients consume each map
- Extract and inspect maps with the appropriate commands
- Use map contents to answer operational questions
Prerequisites
None — start here.
Verified against Ceph Tentacle 20.2.x · Ceph Squid 19.2.x (supported previous) · cephadm matches the verified Ceph release · podman 4.x · csi-rbd and csi-cephfs current · RBD / CephFS / RGW current (matches Ceph release) · Linux kernel 5.15+ (5.10 minimum) · Ubuntu 24.04 LTS (Ceph host baseline) · Debian 12 (Bookworm) (Ceph host baseline) · Rocky Linux / RHEL / AlmaLinux 9.x (Ceph host baseline) · Proxmox VE 9.x (cross-course integration) · Kubernetes 1.31+ (cross-course integration) · 2026-08-18
Why this matters in production
Dashboards summarise. Maps state. When a summary and reality disagree — or when the summary does not contain the field you need — going to the map is the answer.
monmap
ceph mon dump
Contains: monitor names, ranks, addresses (v1 and v2), the fsid, and the monmap epoch. Consumed by everything, because every participant must know how to reach a monitor.
Changes only when monitors are added, removed, or readdressed — perhaps a handful of times in a cluster’s life. A monmap epoch that changes unexpectedly is worth investigating.
osdmap
ceph osd dump
ceph osd tree
ceph osd getcrushmap -o /tmp/cm.bin
The largest and busiest map. Contains: every OSD with its state (up/
down, in/out), CRUSH weight, reweight, and addresses; every pool with
its full configuration; the CRUSH map; pool snapshots; and cluster
flags such as noout.
Consumed by every OSD and every client. Changes on any OSD state change, any pool change, and any CRUSH change — which is why its epoch is the useful churn indicator.
pgmap
ceph pg dump
ceph pg dump_stuck
ceph pg stat
Contains per-PG state, acting and up sets, object counts, and statistics. Changes constantly. Consumed primarily by the manager for reporting; OSDs know their own PGs without needing the global view.
ceph pg dump_stuck is the practical entry point — it filters to PGs
that are inactive, unclean, or stale rather than dumping everything.
mdsmap
ceph fs dump
ceph fs status
Contains: filesystems, their ranks, which MDS holds each rank, standby daemons, and per-filesystem settings. Consumed by CephFS clients and MDS daemons. Changes on MDS failover and rank changes.
Extracting maps for offline work
ceph osd getmap -o /tmp/osdmap.bin
osdmaptool /tmp/osdmap.bin --print
osdmaptool /tmp/osdmap.bin --test-map-pgs-dump --pool 7
osdmaptool can simulate placement against a saved map, which is how
you answer “what would happen if we changed this” without touching the
cluster. Together with crushtool --test, it is the offline analysis
toolkit.
Quiz
Knowledge check · 4 questions
Q1. Which map contains the CRUSH map, and why does that placement matter?
Q2. An OSD that has been down long enough falls outside the retained epoch history and must be sent a full osdmap rather than a set of deltas.
Q3. A cluster shows unexpectedly slow recovery. ceph status shows no obvious problem beyond the degraded PGs. Use the maps to investigate.
A single OSD failed six hours ago on a 96-OSD cluster. Backfill is progressing at a fraction of the expected rate. ceph status shows the degraded PG count falling very slowly and reports HEALTH_WARN for the degraded PGs only. Devices show low utilisation and the network is not saturated.
Q4. Name the offline tools for analysing maps and explain what question each answers.
Passing score: 75%. Answers are checked in this browser.
Production discipline
Go to the map when the summary is insufficient — ceph osd dump
holds per-OSD weights, complete pool settings, and the full cluster
flag list that ceph status only hints at. Use ceph pg dump_stuck
rather than a full PG dump when hunting problems. And validate every
topology change offline first with crushtool --test and
osdmaptool --test-map-pgs-dump, since both answer “what would
happen” without touching the cluster.
Cross-course references
- Ceph: Part LIV (ceph status and health detail) for reading summaries well.
- Ceph: Part XV (CRUSH Maps and Rules) for editing with crushtool.
- Ceph: Part XXII (PG Investigation) for pg dump in anger.