美文网首页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 

相关文章

  • 磁盘读写速度测试 (IO测试)

    1.阿里云磁盘IO测试 高效云盘 40GiB (2120 IOPS) 高效云盘 500GiB (5000 IOPS...

  • fio命令

    FIO介绍FIO是测试IOPS的非常好的工具,用来对磁盘进行压力测试和验证。磁盘IO是检查磁盘性能的重要指标,可以...

  • FIO

    FIO是测试IOPS的非常好的工具,用来对磁盘进行压力测试和验证。磁盘IO是检查磁盘性能的重要指标,可以按照负载情...

  • 磁盘性能测试参数

    LINUX性能测试参数: • 测试随机写IOPS: fio -direct=1 -iodepth=128 -rw=...

  • Longhorn vs Rook vs OS 压测数据

    背景 验证k8s使用的持久存决方案的磁盘性能 基础知识 磁盘性能指标 IOPS 每秒输入/输出操作,最长见到指标是...

  • IO高排查

    1 测试工具 2 指标 使用率、饱和度、IOPS、吞吐量以及响应时间等。这五个指标,是衡量磁盘性能的基本指标使用率...

  • 【MySQL】FIO测试磁盘IOPS

    前言:想到之前用sysbench测试过服务器硬盘IOPS,但是没有指定数据块大小,所以最近又另外找了fio工具来测...

  • 释放百万IOPS性能!阿里云数据库下一代存储介质ESSD云盘来了

    阿里云数据库首个跨入IOPS百万时代的云盘——ESSD,单盘IOPS高达100万,比上一代SSD云盘最高测试数据快...

  • 使用FIO测试磁盘的iops

    FIO是测试IOPS的非常好的工具,用来对硬件进行压力测试和验证,支持13种不同的I/O引擎,包括:sync,mm...

  • 磁盘性能监控

    常见磁盘类型及其IOPS 查看型号 性能监控 blktrace 硬件参数 定义顺序和随机I/O操作 如果I/O操作...

网友评论

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

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