RAID stands for "Redundant Array of Inexpensive/Independent Disks". RAID can increase performance and/or data redundancy and/or capacity. There are many different RAID types, the most common being RAID 0 (stripe), RAID 1 (mirror) and RAID 5 (stripe with parity).
RAID works by combining two or more hard disks.
In a RAID 0 (stripe) array, data is split equally between the number of disks in the array. For example, when a 2 MB file is written to a RAID 0 array with two hard drives, the file is split in to two parts and 1 MB of data is written to each hard drive. This increases capacity and performance, but sharply decreases redundancy since only one of the drives needs to fail for all information to be lost.
In a RAID 1 (mirror) array, a complete copy is written to each hard drive in the array. Capacity and performance stay the same, but redundancy is increased. As long as one drive works, you will not lose data.
In a RAID 5 (stripe with parity) array, you need at least three hard drives. Files are split up to all but one of the drives (similar to RAID 0) and a parity bit is written to the last drive. This increases performance, capacity and redundancy. Performance is not as good as RAID 0, but still better than RAID 1. Redundancy is not as good as RAID 1, but is still quite reliable. Capacity is the sum of all but one of the drives.
There are other RAID levels, but they are not as common.
RAID support simply means that whatever device is being described supports RAID. Nearly anything supports RAID. The only computer component that "RAID support" would be relevant to would be a computer motherboard or an IDE or SATA controller.
Chat with our AI personalities
The term "RAID server recovery" means just that: recovery of the RAID server. A RAID server is a computer that runs RAID software to act as a secondary storage.
Hardware will be RAID PCIe / PCIx RAID hardware controller but The hardware RAID is often the motherboard RAID controller or a separate RAID card.
RAID 3
Different RAID systems have different effects on multiple hard drives. RAID 0 combines storage together. Say you have 2 250GB HDDs combined with RAID 0: that you gives you, essentially, 500GB of storage. The problem with RAID 0 is that if one of the drives were to fail, then the other is to fail too, because of the way RAID 0 works by distributing strands of data over both disks. RAID 0 is sometimes not considered to be a true RAID system because of the lack of fault tolerance. RAID 1 and 5 are more complex to describe, but they generally deal with the same thing: backups. Instead of combining storage, RAID 1 and 5 deal with clones of a particular drive to offer redundancy if one were to fail. Say you have 2 250GB HDDs under RAID 1, essentially giving you 250GB of storage. If one drive were to fail, then the other would serve as a replacement if such were to occur.
To understand what is raid level 10 you need to know what is Raid 0 and what is Raid 1. Raid 0 is writing of certain data to two hard drive in stripes, thus doubling the speed of writing or loading data. Raid 1 is parallel writing of data to two hard driver. Whatever is written to drive one is written to drive two, thus having automatic backup of data in case of something goes wrong. Now if you combine these two, you get Raid 10. Your data are first written in stripes to hard drive let's call them 1 and 2 and then data from 1 and 2 are copied to hard drive 3 and 4 respectively. All this happen on the fly. This give speed and security of your data if one of primary hard drives fails.