HPE EVA Storage
1753666 Members
6051 Online
108799 Solutions
New Discussion юеВ

Re: Does Raid level decides the Host read/write performace to storage disk

 
Ranjith M
Advisor

Does Raid level decides the Host read/write performace to storage disk

Hi Experts,

Greetings for the day

Does Raid level decides the host read/write performance to storage disk. Considering that on high end storages which has huge number of redundant cache and acknowledgment is given back to host as soon as the data is written to cache, choice of raid level should not play a significant role ?

Appreciate any thoughts in this regard.

Thanks

Ranjith
2 REPLIES 2
Torsten.
Acclaimed Contributor

Re: Does Raid level decides the Host read/write performace to storage disk

It really depends, but in general yes.

Rule of thumb - RAID 5 slow writes, reads fast.

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Cass Witkowski
Trusted Contributor

Re: Does Raid level decides the Host read/write performace to storage disk

Yes it does to a point.

If you have RAID 1 (mirroring on the controller) then a write needs to be sent to both disks. Controllers should be able to send these to both disks at the same time unless the disks are on the same SCSI bus.

On RAID 5 a write to a disk really could cause 4 disk I/Os worst case. When you write a block you need to update the parity block as well. To update the parity you need to read the old parity and the old data. So worse case is 2 reads and 2 writes for every write. There are a lot of optimizations that controllers do to reduce this but you need to realize that if you are driving the disk subsystem hard with a high amount of writes you could end up swamping it.