From e2dcb894074a1824f92acc5df5aec94e977e27b5 Mon Sep 17 00:00:00 2001 From: Ronen Friedman Date: Sun, 15 Sep 2024 12:23:44 +0300 Subject: [PATCH] osd/scrub: reduce osd_requested_scrub_priority default value No scrub messages should have a higher priority than client op messages. The default value should therefore be below osd_client_op_priority, which is 63. But as a followup PR would eliminate the special queue priority for 'requested' scrub messages, the default value is set to equal osd_scrub_priority. Fixes: https://tracker.ceph.com/issues/68072 Signed-off-by: Ronen Friedman (cherry picked from commit b98a46582e5e21de13e51017ea35dabdc19db71d) --- src/common/options/global.yaml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/options/global.yaml.in b/src/common/options/global.yaml.in index 9bab8af70633b..cc402e9de1d4a 100644 --- a/src/common/options/global.yaml.in +++ b/src/common/options/global.yaml.in @@ -3656,7 +3656,7 @@ options: - name: osd_requested_scrub_priority type: uint level: advanced - default: 120 + default: 5 fmt_desc: The priority set for user requested scrub on the work queue. If this value were to be smaller than ``osd_client_op_priority`` it can be boosted to the value of ``osd_client_op_priority`` when -- 2.39.5