Just wanted to clear my understanding on RAID 5, suppose we have 100 GB of data to be stored in SAN in RAID level 5, does the actual storage means 100 *5= 500 GB ?, or it is the 100 GB only which is stored in different 5 dsiks? please make me understand. Thanks
Wikipedia actually has a really thorough walk-through on RAID technology and raid levels.
Wikipedia Link
The REALLY short version is it combines several physical hard disks and creates one(or more) logical hard disks, that can be configured to backup each others data across multiple hard drives, or to span the entire group.
Raid5 is N=(N-1), so if you had 5x 100GB disks, You'd have a 400GB group.
If I'm reading your question correctly, you are asking how the 100GB of data would be stored on the RAID 5?
RAID 5 works by striping data across multiple disks (must be at least 3 disks), and also performing a parity calculation. For this reason, a RAID 5 is excellent with Read speeds, but slow for Writes.
Your 100GB of data will be written across all disks in a RAID 5. In addition to that, a parity calculation will be performed across all of the data, and distributed across all of the disks in the array. This way, if any single disk fails, all of the data that was on it can be re-created from the Parity information.
However, the parity calculation does increase the space required to store the data. In a 3-disk array, 100GB of data will actually consume 133GB. In a 4 disk array it would be 125GB. But that's not really important - all that's important is that you remember that in a RAID 5, your available space is N-1. 100GB will look like 100GB - the additional space required is already calculated in to the extra drive in the array.
Does that help?
It's simpler than that;
Total storage used = space + (space/disks); i.e. 100 + (100/3) = 133, meaning 44 per disk in a three disk R5 array.
Note that the number 5 in RAID5 has nothing to do with the number of disks involved.
It's just a name of this specific setup, which distributes parity information across all disks. You need a minimum of 3 disks, but can use an unlimited number of disks theoretically (in practice, this number is constrained by RAID controller limits). Total space you get from the array corresponds to S * (n-1), where S is the size of the smallest disk, and n is the number of disks.
For example, 4 disks of 1Tb will give you 3Tb of usable space in RAID5.
Wikipedia explains how the setup works in more detail.
Check this one out: http://en.wikipedia.org/wiki/RAID_5#RAID_5 Available disk space is shown there.
The actual storage means 100*4 because 1 disc is used to store block. For more info check out the following links. http://en.wikipedia.org/wiki/RAID http://compreviews.about.com/od/storage/l/aaRAIDPage1.htm
Greetz