What is the formula for working out the final raid size of a raid 5 array knowing the number of disk and the size of each disk?
|
feedback
|
migrated from stackoverflow.com Apr 19 '11 at 22:58
This question came from our site for professional and enthusiast programmers.
| |||||
feedback
|
|
Bear in mind that although RAID 5 gives good fault tolerance at a (relatively) low price, other RAID levels can often outperform it, and in the right circumstances provide better fault tolerance. A RAID 5 set can tolerate a single disk failure (assuming no auto-rebuild on a hot spare is implemented), but a 0+1 stripe-mirror set can suffer multiple disk failures before the whole set dies.*
| |||
|
feedback
|
|
Add the number of hard drives minus 1. Either all the drives have to be the same size, or if you use different sizes, the RAID will treat all the drives the same as it would the smaller one. 10 1TB hard drives equal 9TB of storage. 9 1TB drives and one 500GB drives is 4.5TB of storage (each 1TB is treated as a 500GB) | |||
|
feedback
|