Skip to content

Commit 1ad62cf

Browse files
committed
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 <[email protected]>
1 parent db43ab3 commit 1ad62cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

qa/tasks/radosbench.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ def task(ctx, config):
121121
'{tdir}/archive/coverage',
122122
'rados',
123123
'--no-log-to-stderr',
124-
'--name', role]
124+
'--name', role] +
125+
['-t', str(concurrency)]
125126
+ size + objectsize +
126127
['-p' , pool,
127128
'bench', str(config.get('time', 360)), runtype,

0 commit comments

Comments
 (0)