]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
common: Remove unused config option osd_recovery_threads
authorDavid Zafman <dzafman@redhat.com>
Thu, 30 Mar 2017 00:35:51 +0000 (17:35 -0700)
committerDavid Zafman <dzafman@redhat.com>
Mon, 17 Apr 2017 14:58:30 +0000 (07:58 -0700)
Signed-off-by: David Zafman <dzafman@redhat.com>
doc/rados/configuration/osd-config-ref.rst
doc/rados/operations/monitoring-osd-pg.rst
src/common/config_opts.h

index 06e46a6eab9ca010b0d2e2a7f3ba9a0950bc86ee..d68316dff603fb2ae0de596c9c9f1ac787d4c6cc 100644 (file)
@@ -673,13 +673,6 @@ perform well in a degraded state.
 :Default: ``8 << 20`` 
 
 
-``osd recovery threads`` 
-
-:Description: The number of threads for recovering data.
-:Type: 32-bit Integer
-:Default: ``1``
-
-
 ``osd recovery thread timeout`` 
 
 :Description: The maximum time in seconds before timing out a recovery thread.
index 866ae8313ba47c4130296c8022cb67239b98d99c..37f1960cba6bf859b27383935901a42a28bafd02 100644 (file)
@@ -468,8 +468,7 @@ Ceph provides a number of settings to balance the resource contention between
 new service requests and the need to recover data objects and restore the
 placement groups to the current state. The ``osd recovery delay start`` setting
 allows an OSD to restart, re-peer and even process some replay requests before
-starting the recovery process. The ``osd recovery threads`` setting limits the
-number of threads for the recovery process (1 thread by default).  The ``osd
+starting the recovery process.  The ``osd
 recovery thread timeout`` sets a thread timeout, because multiple OSDs may fail,
 restart and re-peer at staggered rates. The ``osd recovery max active`` setting
 limits the  number of recovery requests an OSD will entertain simultaneously to
index 974ee7efd337b5b62631fb488cd940f8bc9a48d3..3de8c42ee89422600c1a3f103a8dcca2d5879a32 100644 (file)
@@ -742,7 +742,6 @@ OPTION(osd_op_pq_min_cost, OPT_U64, 65536)
 OPTION(osd_disk_threads, OPT_INT, 1)
 OPTION(osd_disk_thread_ioprio_class, OPT_STR, "") // rt realtime be best effort idle
 OPTION(osd_disk_thread_ioprio_priority, OPT_INT, -1) // 0-7
-OPTION(osd_recovery_threads, OPT_INT, 1)
 OPTION(osd_recover_clone_overlap, OPT_BOOL, true)   // preserve clone_overlap during recovery/migration
 OPTION(osd_op_num_threads_per_shard, OPT_INT, 2)
 OPTION(osd_op_num_shards, OPT_INT, 5)