RAID S is like RAID 5, but it has a big difference:
RAID 5 spread the parity between all disk drives and parity is for chunks of data (blocks with a fixed size), so a chunk size could be 128K, 32K, etc. depending on the provider.
Code:
D D D D P
D D D P D
D D P D D
D P D D D
P D D D D
Each column is a disk drive. D stand for "Data" and P for "Parity".
RAID S is done with 4 disk (not more, not less) and it use a hypervolume (as partitions) rather than blocks, so you have data volumes and parity volumes. For example, if you have 4 disk drives in RAID S, and each drive with 4 hypervolume you will have:
Code:
V V V P
V V P V
V P V V
P V V V
Each column is a disk drive. V stand for "Data VOLUME" and P for "Parity VOLUME". A volume is a LUN assigned to servers.
The Parity volume on first row is the parity for the 3 Volumes on first row; second parity volume (2nd row) is for 3 volumes on 2nd row, and so on...
Do you get the big difference?
Veritas RAID 5 is, as the name state, a RAID 5 and the difference is the stated above, it means striped data and striped parity.
Hope this help.