From: Sridhar Seshasayee Date: Tue, 11 Apr 2023 16:30:11 +0000 (+0530) Subject: osd/: Retain the default osd_max_backfills limit to 1 for mClock X-Git-Tag: v18.1.0~122^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f72f56bddf8e49f1f26097092f4319b7f29c09ff;p=ceph.git osd/: Retain the default osd_max_backfills limit to 1 for mClock The earlier limit of 3 was still aggressive enough to have an impact on the client and other competing operations. Retain the current default for mClock. This can be modified if necessary after setting the osd_mclock_override_recovery_settings option. Signed-off-by: Sridhar Seshasayee --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 91c6522d2318c..c2404ce793b38 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -9991,7 +9991,7 @@ bool OSD::maybe_override_options_for_qos(const std::set *changed) {"osd_recovery_max_active", 0}, {"osd_recovery_max_active_hdd", 3}, {"osd_recovery_max_active_ssd", 10}, - {"osd_max_backfills", 3}, + {"osd_max_backfills", 1}, }; // Check if we were called because of a configuration change