mirror of
https://github.com/ceph/ceph
synced 2025-02-21 18:17:42 +00:00
Merge pull request #17011 from liewegas/wip-doc-bluestore-migration
doc/rados/operations/bluestore-migration: update docs a bit
This commit is contained in:
commit
f4991b71e2
@ -55,7 +55,7 @@ more data migration than should be necessary, so it is not optimal.
|
||||
|
||||
#. Wait for the data to migrate off the OSD in question::
|
||||
|
||||
while ! ceph health | grep HEALTH_OK ; do sleep 60 ; done
|
||||
while ! ceph osd safe-to-destroy $ID ; sleep 60 ; done
|
||||
|
||||
#. Stop the OSD::
|
||||
|
||||
@ -168,7 +168,7 @@ the data migrating only once.
|
||||
|
||||
#. Wait for data migration to complete::
|
||||
|
||||
while ! ceph health | grep HEALTH_OK ; do sleep 60 ; done
|
||||
while ! ceph osd safe-to-destroy $(ceph osd ls-tree $OLDHOST); do sleep 60 ; done
|
||||
|
||||
#. Stop all old OSDs on the now-empty ``$OLDHOST``::
|
||||
|
||||
@ -178,7 +178,7 @@ the data migrating only once.
|
||||
|
||||
#. Destroy and purge the old OSDs::
|
||||
|
||||
for osd in `ceph osd crush ls $OLDHOST`; do
|
||||
for osd in `ceph osd ls-tree $OLDHOST`; do
|
||||
ceph osd purge $osd --yes-i-really-mean-it
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user