From 1ad62cf887b4aa476e13ac6c3036f853bfbf10b8 Mon Sep 17 00:00:00 2001 From: Matan Breizman Date: Thu, 13 Mar 2025 14:29:31 +0000 Subject: [PATCH] qa/tasks/radosbench: make use of concurrency flag This affects mainly radosbench-high-concurrency.yaml The concurrency flag was only used in non-write scenarios to populate the initial data. We should use this flag with `write` mode as well. Signed-off-by: Matan Breizman --- qa/tasks/radosbench.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qa/tasks/radosbench.py b/qa/tasks/radosbench.py index 3a5aee2e265b0..d4d163656260a 100644 --- a/qa/tasks/radosbench.py +++ b/qa/tasks/radosbench.py @@ -121,7 +121,8 @@ def task(ctx, config): '{tdir}/archive/coverage', 'rados', '--no-log-to-stderr', - '--name', role] + '--name', role] + + ['-t', str(concurrency)] + size + objectsize + ['-p' , pool, 'bench', str(config.get('time', 360)), runtype, -- 2.39.5