RAID (Redundant Array of Individual Disks) 10 is useful for both speed and redundancy
RAID 10 (or RAID 1+0) is a hybrid array type that offers speed by splitting the data between drives, and redundancy by placing it on multiple drives. The minimum number of drives to use is 4, and the storage space is 1/2 the total space of the drives set aside for this array.
Questions with this tag should include the controller type (for troubleshooting) or at least whether it's a Software RAID.
The data is laid out as such across the 4 drives:
Drive A | Drive B | Drive C | Drive D
Part A1 | Part A2 | Part A1 | Part A2
Part A3 | Part A3 | Part A4 | Part A4
Because data is duplicated on drives, you can have UP TO 2 drives fail in the array before data loss occurs. With RAID 1, you can only have one drive fail (especially since you would lose all data if your only copies disappeared). With RAID 0, you get great speed, but if you lose one drive, you lose the entire array. RAID 10 solves these problems