How Does mdadm Handle RAID1 with Drives of Different Speeds?

0
2
Asked By TechieNerd95 On

I'm planning to set up a RAID1 configuration using mdadm with three different drives at varying speeds: an M.2 SSD with 14 GB/sec, a SATA SSD at 600 MB/sec, and a SATA HDD at 100 MB/sec. I'm concerned about potential hiccups since two of the drives are write-only. Will the differences in speed cause issues with performance, particularly with the -writeonly setup? Has anyone dealt with a similar configuration?

1 Answer

Answered By CuriousCoder12 On

In this setup, you’ll be limited to the write speed of the slowest drive, which is the HDD at 100 MB/s. If you really want to try it, you can use the --write-behind option to help somewhat, but you'll need to enable --bitmap as well, which adds some overhead.

DriveDynamo22 -

Thanks for the tip! Besides --write-behind, is there anything else I should consider? I already have the bitmap setup.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.