• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Lowdown on RAID

What is RAID? I've read about it but I don't think I understand. What is it and what does it do? Sorry but I really don't know. Thanks.
 
RAID (Redundant Array of Inexpensive/Individual Disks)

"It is a storage method that uses numerous devices in combination to store large amounts of data"

So if you have more than one hard drives, you can use it in RAID 0 (striping - no fault tolerance: if something goes wrong, goodbye to data, fastest, size is equal to how big the drives are)

or RAID 1 (mirroring - fault tolerance: stores same data on both drives, so if one drive fails, swap it out and you have the data still. Size is the size of one hard drive, because same data stored on both drives.)

or RAID 5 (striping with parity - fault tolerance, requires at least three drives. Two drives are used to store data, one is used to store parity, so if one fails, you can recover it from the parity. little Faster, but size is not as big as RAID 0, because you use the third drive for parity.)

or RAID 0+1 (mixture of both 0 and 1, requires at least four drives. two are used as RAID 0 while the other two are also used as RAID 0, but the second set is a back up of the first set.)

Hope this helps
 
Okay, so RAID uses more than one HDD to back up data, make it run faster, or both, depending on what type of RAID configuration you have? And this is determined in the driver software for the drives, right? I think I understand better now, thanks.
 
Actually you generally set it up in a BIOS for the RAID controller.
But there are software controlls for this stuff too, depending on what card and OS you have.
 
Back
Top