Storage Spaces with Parity vs RAID 5 contoller without cache

RAID 5 has gotten some bad rep lately mainly because disks got so big and that in a rebuild case a bit failure on the remaining disks is likely.

Nevertheless, I'm curious about something: I read that when using RAID 5 with a hardware controller that does not have a cache, each write requires multiple reads from the other disks and this is bad and slow.

I'm curious whether Storage Spaces with parity in this case would actually outperform the hardware raid 5 and also require fewer reads for a write since I assume that it does use (ram based) caching?


RAID5 (just like any parity RAID, f.e. RAID6 or RAID4) has to read the data before applying writes regardless of cache or no-cache on controller. See:

Read-Modify-Write Vs. Read-Construct-Write

Windows Storage Spaces are infinitely slow (esp. dual parity which is diagonal parity actually taken nearly AS IS from Azure, see Erasure Coding in Azure) so if you have an option to stick with cache-equipped hardware RAID - go for it! It will help with write coalescing by "glueing" multiple writes into single RAID strip update. ZFS which works with variable-size strips so has no mentioned "write hole" is another option, see "Write hole" and why ZFS is immune to it.

Good luck!