vote up 0 vote down star

When using the SQLIO benchmark tool on a 4-core Dell server with 6 15k 450GB (fast) drives, RAID 0, we found the max throughput was 2MB per second. But when configured as RAID 5, we get 30 MB per second.

It seems that the RAID controller, Dell Perc 5i integrated controller, is maxing out the throughput per disk. With RAID 5, I expect to get a bump due to stripping, but not a 15x difference.

Like good programmers, we suspect the hardware , but we could be missing something.

This is predominately write traffic.

flag

50% accept rate
Well, we changed the configuration on another server to match. This is basically making each disk it's own RAID 0, as the controller doesn't allow you to configure it a a plain ol'd disk. After this change, we found the performance to be equally bad. – markn May 14 at 16:14
Changing the configuration to 2 RAID 5s (3 physical disks each) got us to 30 MB/s overall. I am going to buy a Dell SAS 5 i/r card since we don't need hardware RAID to see what the difference is. – markn May 26 at 21:42

2 Answers

vote up 0 vote down

In your update, it doesn't make any sense that you configured each disk into a RAID 0.

RAID 0 is striped too, so you need more than one disk.

link|flag
doh! yeah, it wasn't really clear with the PERC setup utility. But even with RAID 5 across 3 15k 450GB drives, doesn't 30MB/s seem a bit slow? – markn Nov 1 at 2:17
vote up 0 vote down

RAID 0 write speeds should be significantly faster than RAID 5. RAID 0 stripes across all the drives so parts of the data you are writing will end up spread across the 6 disks.

RAID 5 also spreads the data across the drives but actually writes extra parity data so it can store the parity data in case one of the drives goes bad.

30 MB seems a little low on write speed to me for RAID5 in that setup but isn't terrible. 2MB per second just plain terrible, especially for RAID 0. I don't think I have enough info to tell you if it is hardware or not but I can tell you that something is wrong with this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.