使用 SSD 的 mdadm RAID1 写入速度非常差

使用 SSD 的 mdadm RAID1 写入速度非常差

我有两块三星 860 QVO,组成 RAID1,使用 mdadm。单盘写入速度大概是 450MB/s。在 RAID 1 上最高能达到 70MB/s。读取速度正常。

使用xfs作为文件系统。

这里有什么问题?

/proc/mdstat

Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10]
md0 : active raid1 sdb[0] sdc[1]
      976630464 blocks super 1.2 [2/2] [UU]
      bitmap: 3/8 pages [12KB], 65536KB chunk

unused devices: <none>

dd if = / dev / zero of = / vm-storage / testfile bs = 1G count = 1 oflag = dsync

1073741824 bytes (1,1 GB, 1,0 GiB) copied, 16,6422 s, 64,5 MB/s

答案1

写入速度很慢,因为你使用了oflag=dsync。正如手册页所述:

       dsync  use synchronized I/O for data

这意味着系统在每次写入后都会等待,直到存储确认写入。通常,您不会使用同步 I/O,除非您的应用程序迫切需要确保在继续之前单个写入确实已提交到介质。

相关内容