顺序读:侧重BW(吞吐量)测试,选用1MB块大小

fio -filename=test.file -direct=1 -iodepth 1 -thread -rw=read -ioengine=psync -bs=1m -size=2G -numjobs=10 -runtime=60 -group_reporting -name="bs 1m read"

顺序写:侧重BW(吞吐量)测试,选用1MB块大小

fio -filename=test.file -direct=1 -iodepth 1 -thread -rw=write -ioengine=psync -bs=1m -size=2G -numjobs=10 -runtime=60 -group_reporting -name="bs 1m write"

随机读:侧重IOPS测试,选用4K、8K块大小

fio -filename=test.file -direct=1 -iodepth 1 -thread -rw=randread -ioengine=psync -bs=8k -size=2G -numjobs=10 -runtime=60 -group_reporting -name="bs 8k random read"

随机写:侧重IOPS测试,选用4K、8K块大小

fio -filename=test.file -direct=1 -iodepth 1 -thread -rw=randwrite -ioengine=psync -bs=8k -size=2G -numjobs=10 -runtime=60 -group_reporting -name="bs 8k random write"

混合随机读写:侧重IOPS测试,选用4K、8K块大小

fio -filename=test.file -direct=1 -iodepth 1 -thread -rw=randrw -rwmixread=70 -ioengine=psync -bs=8k -size=2G -numjobs=10 -runtime=60 -group_reporting -name="bs 8k random mix 70 rw"

[ 编辑 | 历史 ]
最近由“jilili”在“2021-09-07 06:39:33”修改