fio测试IOPS
安装fio
yum install fio -y
选择磁盘/dev/sda
随机写
每个线程写入512M文件,单个块大小为16K,5个线程运行5秒
测试完成后不会保留写入的大文件
# 创建空文件
touch /root/test1
# filename指定空文件测试IOPS
fio -filename=/root/test1 -direct=1 -iodepth 1 -thread -rw=randwrite -ioengine=psync -bs=16k -size=512M -numjobs=5 -runtime=5 -group_reporting -name=test
写IOPS是13k
参考资料