diff options
author | Zac Dover <zac.dover@proton.me> | 2025-01-19 13:49:52 +0100 |
---|---|---|
committer | Zac Dover <zac.dover@proton.me> | 2025-01-19 13:49:52 +0100 |
commit | dceaab9a1a479ea3a10b6eff5bb4ae23d2ad6aa0 (patch) | |
tree | 7a4cbe5d3562c143cae09e51cd7c2c1f07bef2f5 /doc/cephfs/disaster-recovery-experts.rst | |
parent | Merge pull request #61427 from zdover23/wip-doc-2025-01-17-cephfs-disaster-re... (diff) | |
download | ceph-dceaab9a1a479ea3a10b6eff5bb4ae23d2ad6aa0.tar.xz ceph-dceaab9a1a479ea3a10b6eff5bb4ae23d2ad6aa0.zip |
doc/cephfs: disaster-recovery-experts cleanup
Properly wrap a poorly-formatted paragraph that looks just awful in an
80-column viewport and change MDS to "MDS daemons" where the latter
makes the sentence a lot clearer.
Signed-off-by: Zac Dover <zac.dover@proton.me>
Diffstat (limited to '')
-rw-r--r-- | doc/cephfs/disaster-recovery-experts.rst | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/cephfs/disaster-recovery-experts.rst b/doc/cephfs/disaster-recovery-experts.rst index 3a66d251dcf..961f86c2f24 100644 --- a/doc/cephfs/disaster-recovery-experts.rst +++ b/doc/cephfs/disaster-recovery-experts.rst @@ -69,7 +69,7 @@ that an MDS cannot replay: cephfs-journal-tool [--rank=<fs_name>:{mds-rank|all}] journal reset --yes-i-really-really-mean-it Specify the filesystem and the MDS rank using the ``--rank`` option when the -file system has or had multiple active MDS. +file system has or had multiple active MDS daemons. .. warning:: @@ -106,7 +106,7 @@ MDS map reset Once the in-RADOS state of the file system (i.e. contents of the metadata pool) is somewhat recovered, it may be necessary to update the MDS map to reflect the contents of the metadata pool. Use the following command to reset the MDS -map to a single MDS: +map to a single MDS daemon: :: @@ -115,11 +115,12 @@ map to a single MDS: Once this is run, any in-RADOS state for MDS ranks other than 0 will be ignored: as a result it is possible for this to result in data loss. -One might wonder what the difference is between 'fs reset' and 'fs remove; fs new'. The -key distinction is that doing a remove/new will leave rank 0 in 'creating' state, such -that it would overwrite any existing root inode on disk and orphan any existing files. In -contrast, the 'reset' command will leave rank 0 in 'active' state such that the next MDS -daemon to claim the rank will go ahead and use the existing in-RADOS metadata. +One might wonder what the difference is between 'fs reset' and 'fs remove; fs +new'. The key distinction is that doing a remove/new will leave rank 0 in +'creating' state, such that it would overwrite any existing root inode on disk +and orphan any existing files. In contrast, the 'reset' command will leave +rank 0 in 'active' state such that the next MDS daemon to claim the rank will +go ahead and use the existing in-RADOS metadata. Recovery from missing metadata objects -------------------------------------- |