From 719af445d5e674253b6bd3e9e7c075d05bc0628f Mon Sep 17 00:00:00 2001 From: Sridhar Seshasayee Date: Fri, 12 Sep 2025 13:38:30 +0530 Subject: [PATCH] qa: Disable OSD benchmark from running for tests. Disable OSD bench from benchmarking the OSDs for teuthology tests. This is to help prevent a cluster warning pertaining to the IOPS value not lying within a typical threshold range from being raised. The tests can rely on the built-in static values as defined by osd_mclock_max_capacity_iops_[ssd|hdd] which should be good enough. Fixes: https://tracker.ceph.com/issues/74501 Signed-off-by: Sridhar Seshasayee (cherry picked from commit cf04790bede6be13cc27dcdf50fe19a953860321) Conflicts: qa/config/rados.yaml - Removed a non-existing option under mon overrides --- qa/config/rados.yaml | 1 + qa/tasks/ceph.conf.template | 1 + qa/tasks/cephadm.conf | 1 + 3 files changed, 3 insertions(+) diff --git a/qa/config/rados.yaml b/qa/config/rados.yaml index 710847f594b8..d801ea305bc5 100644 --- a/qa/config/rados.yaml +++ b/qa/config/rados.yaml @@ -9,5 +9,6 @@ overrides: bluestore zero block detection: true osd mclock override recovery settings: true osd mclock profile: high_recovery_ops + osd mclock skip benchmark: true mon: mon scrub interval: 300 diff --git a/qa/tasks/ceph.conf.template b/qa/tasks/ceph.conf.template index 7ae2b83c2951..b3775364a0fa 100644 --- a/qa/tasks/ceph.conf.template +++ b/qa/tasks/ceph.conf.template @@ -48,6 +48,7 @@ osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops + osd mclock skip benchmark = true osd recover clone overlap = true osd recovery max chunk = 1048576 diff --git a/qa/tasks/cephadm.conf b/qa/tasks/cephadm.conf index 374adfbab948..9f72b9d8cfac 100644 --- a/qa/tasks/cephadm.conf +++ b/qa/tasks/cephadm.conf @@ -41,6 +41,7 @@ mon allow pool delete = true osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops +osd mclock skip benchmark = true osd recover clone overlap = true osd recovery max chunk = 1048576 -- 2.47.3