惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
B
Blog
月光博客
月光博客
博客园 - 【当耐特】
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
博客园 - Franky
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
B
Blog RSS Feed
H
Help Net Security

OneUptime Blog

How to Monitor Azure App Services (PaaS) with OpenTelemetry Grafana Stack vs OneUptime: DIY Observability or Unified Platform? Your AI Workloads Are About to Blow Up Your Observability Bill The Great Observability Consolidation Is Here How to Write Custom Object Classes for Ceph How to Write Custom Ceph Manager Modules How to Write a ceph.conf Configuration File How to Use Rook-Ceph with OpenShift How to Use Rook-Ceph with Longhorn for Comparison How to Configure Volume Snapshot Class for RBD in Rook How to Configure VolumeReplicationClass Scheduling Intervals in Rook How to Set Up Volume Replication with Rook-Ceph How to Create Volume Group Snapshots with Rook CSI How to Visualize Ceph Network Performance in Grafana How to Enable Virtual Host-Style Bucket Access in Rook How to View Runtime Configuration via Admin Socket How to View Quota Settings and Update Stats in Ceph RGW How to View PG Scaling Recommendations with autoscale-status How to View PG Distribution via Admin Socket How to View Performance Metrics in the Ceph Dashboard How to View OSD Performance Counters in Ceph How to View Connection Status via Admin Socket How to View Ceph Cluster Summary Dashboard via CLI How to Version Control Rook-Ceph Configuration How to Version Control Ceph Infrastructure with Terraform How to Verify Kubernetes Node Requirements for Rook-Ceph Deployment How to Verify Health Before and After Rook Upgrades How to Verify Data Integrity with Deep Scrubbing How to Verify Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots
How to Understand MDS States in CephFS
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Overview

CephFS Metadata Servers (MDS) transition through a defined set of states as they start up, serve clients, handle failover, and shut down. Understanding these states is essential for diagnosing MDS issues, interpreting health alerts, and knowing when action is required in your Rook-Ceph cluster.

Check Current MDS State

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph fs status cephfs
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph mds dump

MDS State Reference

Active States

up:active       - Normal operating state. The MDS is serving client requests
                  for one or more metadata subtrees (ranks).

up:standby      - The MDS daemon is running and healthy but not serving
                  any rank. Ready to take over if an active MDS fails.

up:standby-replay - Actively replaying the journal of an active MDS to
                  minimize failover time. Tracks a specific active rank.

Transition States

up:boot         - The MDS just started and is registering with the monitor.
                  Transient state during startup.

up:creating     - The MDS is creating the initial journal and metadata
                  structures for a new rank.

up:starting     - The MDS is loading metadata from its journal before
                  becoming active. May take time on large filesystems.

up:stopping     - The MDS is flushing its journal and evicting clients
                  in preparation for graceful shutdown.

up:replay       - The MDS is replaying its journal after a crash or restart.
                  Clients cannot connect until replay completes.

up:reconnect    - The MDS completed journal replay and is waiting for
                  clients to reconnect within the session timeout window.

up:rejoin       - The MDS is rejoining the cluster after reconnect and
                  reintegrating with other active MDS daemons.

up:resolve      - The MDS is resolving distributed metadata inconsistencies
                  after a multi-active failover scenario.

Failure States

up:damaged      - The MDS encountered unrecoverable journal or metadata
                  corruption and cannot proceed without manual repair.

down:failed     - The MDS daemon crashed or was killed and has not been
                  replaced by a standby yet.

down:dne        - The MDS rank does not exist (no MDS assigned).

down:stopped    - The filesystem or rank was explicitly stopped via
                  "ceph fs set <fs_name> down true" or "ceph fs fail <fs_name>".

Common State Transitions

A healthy startup sequence looks like:

up:boot -> up:creating (new fs) or up:replay (existing) -> up:reconnect -> up:rejoin -> up:active

A failover sequence:

active MDS crashes -> down:failed -> standby promoted -> up:replay -> up:reconnect -> up:rejoin -> up:active

Investigate a Stuck MDS

If an MDS is stuck in up:replay or up:reconnect for too long:

kubectl -n rook-ceph logs -l app=rook-ceph-mds,rook_file_system=cephfs \
  --tail=200 | grep -E "replay|reconnect|error"

Force the stuck MDS to fail so a standby takes over:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph mds fail cephfs:0

Summary

CephFS MDS states reflect the daemon lifecycle from boot through normal operation to failure and recovery. Key states to watch in production are up:active (healthy), up:replay and up:reconnect (transitional - acceptable for short durations), and up:damaged or down:failed (require immediate attention). Monitoring MDS states via ceph fs status is a fundamental part of operating a healthy Rook-Ceph CephFS deployment.