File tree Expand file tree Collapse file tree 2 files changed +51
-0
lines changed
Expand file tree Collapse file tree 2 files changed +51
-0
lines changed Original file line number Diff line number Diff line change @@ -959,6 +959,32 @@ Configure the maximum number of concurrent clone operations. The default is 4:
959959
960960 ceph config set mgr mgr/volumes/max_concurrent_clones <value>
961961
962+ Pause the threads that asynchronously purge trashed subvolumes. This option is
963+ useful during cluster recovery scenarios:
964+
965+ .. prompt :: bash #
966+
967+ ceph config set mgr/volumes/pause_purging true
968+
969+ To resume purging threads:
970+
971+ .. prompt :: bash #
972+
973+ ceph config set mgr/volumes/pause_purging false
974+
975+ Pause the threads that asynchronously clone subvolume snapshots. This option is
976+ useful during cluster recovery scenarios:
977+
978+ .. prompt :: bash #
979+
980+ ceph config set mgr/volumes/pause_cloning true
981+
982+ To resume cloning threads:
983+
984+ .. prompt :: bash #
985+
986+ ceph config set mgr/volumes/pause_cloning false
987+
962988Configure the ``snapshot_clone_no_wait `` option:
963989
964990The ``snapshot_clone_no_wait `` config option is used to reject clone-creation
Original file line number Diff line number Diff line change @@ -134,6 +134,31 @@ things to do:
134134 be changed in such circumstances, run the command to change ``max_mds `` with
135135 the confirmation flag (``--yes-i-really-mean-it ``)
136136
137+ * **Turn off async purge threads ** The volumes plugin spawns threads for
138+ asynchronously purging trashed/deleted subvolumes. To help troubleshooting or
139+ recovery effort, these purge threads can be disabled using:
140+
141+ .. code :: bash
142+
143+ ceph config set mgr mgr/volumes/pause_purging true
144+
145+ To resume purging run::
146+
147+ ceph config set mgr mgr/volumes/pause_purging false
148+
149+ * **Turn off async cloner threads ** The volumes plugin spawns threads for
150+ asynchronously cloning subvolume snapshots. To help troubleshooting or
151+ recovery effort, these cloner threads can be disabled using:
152+
153+ .. code :: bash
154+
155+ ceph config set mgr mgr/volumes/pause_cloning true
156+
157+ To resume cloning run::
158+
159+ ceph config set mgr mgr/volumes/pause_cloning false
160+
161+
137162
138163 Expediting MDS journal trim
139164===========================
You can’t perform that action at this time.
0 commit comments