From 6f1701d432b3c96b18c0599728b7ad951346eac7 Mon Sep 17 00:00:00 2001 From: Dirk Sarpe Date: Thu, 26 Apr 2018 16:20:05 +0200 Subject: [PATCH] doc: fix error in osd scrub load threshold OSD::scrub_load_below_threshold divides the 1 min load by the number of online cpus. The documentation said it would use the load without division by number of cpus. Signed-off-by: Dirk Sarpe --- doc/rados/configuration/osd-config-ref.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/rados/configuration/osd-config-ref.rst b/doc/rados/configuration/osd-config-ref.rst index 6c1228665cf..3446a501f6b 100644 --- a/doc/rados/configuration/osd-config-ref.rst +++ b/doc/rados/configuration/osd-config-ref.rst @@ -273,8 +273,8 @@ scrubbing operations. ``osd scrub load threshold`` -:Description: The maximum load. Ceph will not scrub when the system load - (as defined by ``getloadavg()``) is higher than this number. +:Description: The normalized maximum load. Ceph will not scrub when the system load + (as defined by ``getloadavg() / number of online cpus``) is higher than this number. Default is ``0.5``. :Type: Float -- 2.39.5