diff options
author | houjingwen <houjingwen@huawei.com> | 2015-08-25 16:40:22 +0800 |
---|---|---|
committer | Jörgen Karlsson <jorgen.w.karlsson@ericsson.com> | 2015-08-26 09:40:44 +0000 |
commit | 92c599e30571557bc3d5fc882b0bff0a88716db9 (patch) | |
tree | a217a3f56ce8ad4c117d2aa4718c2e15a51befcb /samples | |
parent | 6a0f77e4b3879659d6cf538e914fde3901291713 (diff) |
FIO support variable iodepth
FIO storage performance varification support variable iodepth.
JIRA: YARDSTICK-119
Change-Id: Ib6af55c5fbcaa7727a7541b13053b5e4ce8d3203
Signed-off-by: houjingwen <houjingwen@huawei.com>
Diffstat (limited to 'samples')
-rw-r--r-- | samples/fio.yaml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/samples/fio.yaml b/samples/fio.yaml index f70912a15..be8222766 100644 --- a/samples/fio.yaml +++ b/samples/fio.yaml @@ -5,9 +5,10 @@ # For this sample just like running the command below on the test vm and # getting benchmark info back to the yardstick. # -# sudo fio -filename=/home/ec2-user/data.raw -bs=4k -rw=write -ramp_time=10 \ -# -runtime=60 -name=yardstick-fio -ioengine=libaio -direct=1 \ -# -group_reporting -numjobs=1 -time_based --output=yardstick-fio.log +# sudo fio -filename=/home/ec2-user/data.raw -bs=4k -ipdepth=1 -rw=write \ +# -ramp_time=10 -runtime=60 -name=yardstick-fio -ioengine=libaio \ +# -direct=1 -group_reporting -numjobs=1 -time_based \ +# --output=yardstick-fio.log # # When the above fio command done, the yardstick-fio.log file will contain # information like below and the benchmark script will take iops, throughput @@ -52,13 +53,14 @@ scenarios: options: filename: /home/ec2-user/data.raw bs: 4k + iodepth: 1 rw: write ramp_time: 10 host: fio.demo runner: type: Duration duration: 60 - interval: 60 + interval: 1 context: name: demo |