美文网首页linux
【iops】磁盘(裸盘)的性能测试

【iops】磁盘(裸盘)的性能测试

作者: Bogon | 来源:发表于2023-07-27 21:31 被阅读0次

    安装测试工具

    #  yum install libaio libaio-devel  fio 
    
    

    IOPS性能测试:随机写

    fio -ioengine=libaio -numjobs=1 -bs=4k -direct=1 -rw=randwrite -size=20G -filename=/dev/vdb -name=test -iodepth=64 -runtime=120 --group_reporting 
    

    IOPS性能测试:随机读

    fio -ioengine=libaio -numjobs=1 -bs=4k -direct=1 -rw=randread -size=20G -filename=/dev/vdb -name=test -iodepth=64 -runtime=120 --group_reporting 
    

    吞吐性能测试:随机写

    fio -ioengine=libaio -numjobs=1 -bs=1M -direct=1 -rw=randwrite -size=10G -filename=/dev/vdb -name=test -iodepth=64 -runtime=120 --group_reporting 
    

    吞吐性能测试:随机读

    fio -ioengine=libaio -numjobs=1 -bs=1M -direct=1 -rw=randread -size=10G -filename=/dev/vdb -name=test -iodepth=64 -runtime=120 --group_reporting 
    

    时延性能测试:随机写

    fio -ioengine=libaio -numjobs=1 -bs=4k -direct=1 -rw=randwrite -time_based=1 -filename=/dev/vdb -name=test -iodepth=1 -runtime=120 --group_reporting 
    

    时延性能测试:随机读

    fio -ioengine=libaio -numjobs=1 -bs=4k -direct=1 -rw=randread -time_based=1 -filename=/dev/vdb -name=test -iodepth=1 -runtime=120 --group_reporting 
    

    相关文章

      网友评论

        本文标题:【iops】磁盘(裸盘)的性能测试

        本文链接:https://www.haomeiwen.com/subject/qbxaydtx.html