centos7.9 mdadm raid0 的性能只有 centos8 mdadm raid0 的 50%

centos7.9 mdadm raid0 的性能只有 centos8 mdadm raid0 的 50%

我使用同一台PC和相同的NVMe SSD在不同的OS上进行raid性能测试。 步骤如下:

mdadm -C -v /dev/md0 -l0 -n4 /dev/nvme[0123]n1
mkfs.xfs /dev/md0
mount -o discard /dev/md0 /data
fio  --bs=128k  --ioengine=libaio   --numjobs=1  --direct=1 -- buffered=0  \
    --iodepth=128  --rw=write --norandommap  --randrepeat=0     --stonewall \
    --exitall_on_error --scramble_buffers=1 --group_reporting --do_verify=0 \
    --name=test  --size=50G  --filename=/data/test.txt --ramp_time=0 \
    --runtime=300 --time_based --output=128kseqw.log

在Centos8上带宽为14GB/s,但在Centos7上带宽只有7.5GB/s。

不知道为什么会有这么大的差距?

如何测试centos7 nvme ssd mdadm raid性能?

相关内容