diff options
Diffstat (limited to 'src/ceph/qa/workunits/rbd/smalliobench.sh')
-rwxr-xr-x | src/ceph/qa/workunits/rbd/smalliobench.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ceph/qa/workunits/rbd/smalliobench.sh b/src/ceph/qa/workunits/rbd/smalliobench.sh new file mode 100755 index 0000000..f25fae4 --- /dev/null +++ b/src/ceph/qa/workunits/rbd/smalliobench.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +NUM="$1" +GAP="$2" +DUR="$3" + +[ -z "$NUM" ] && NUM=30 +[ -z "$GAP" ] && GAP=5 +[ -z "$DUR" ] && DUR=30 + +for n in `seq 1 $NUM`; do + echo "Starting $n of $NUM ..." + ceph_smalliobenchrbd --pool rbd --duration $DUR --disable-detailed-ops 1 & + sleep $GAP +done +echo "Waiting..." +wait +echo "OK" |