• 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.

RAID - can anyone explain in plain language?

slowpogo

Member
I've been using a 150GB IDE drive the last 5 years, and as I'm researching a new build I'm seeing a lot about RAID. I really don't know anything about it, other than that it somehow makes multiple SATA drives perform better.

The explanations I've found (such as Wikipedia) are too technical and jargon-filled for me to make sense of. Dare I ask, can someone explain RAID in semi-newbie terms?

Also, do the drives have to be the same capacity to work in RAID? Could I put an 80GB and a 150GB SATA drive in RAID, or only two 80? Thanks...
 
You need two of the same drives.

There are multiple raids you can do. Two of the most common are as follows:

Raid 0 - 2 hard drives with the capacity of 1 but with a theoretical doubling of the speed

Raid 1 - 2 hard drives with the capacity of 1 but with a complete backup of the main hard drive. So essentially you have 2 drives with the same information on them.

They can be any drives, IDE, SATA doesn't matter.

A caution with RAID 0 is that if one drive fails. Both drives will need to be formatted to work again. Thereby doubling your failure rate.

The point of RAID 1 is to backup everything you do. Essentially you probably will never have to worry about losing your information to a bad drive again.
 
RAID is a single acronym that actually means a bunch of different things. The only common thing about the acronym is that all of them talk about using a bunch of differerent drives in some shared role.

There are three broad features of RAID:

1. Speed. IF you can get all the drives working together at the same time, then your overall speed increases beyond what a single drive can do at the time.

2. Capacity. By aggregating all the drives together in some logical grouping, you can have what looks like one huge drive to applications.

3. Redundancy. In every mode other than RAID 0 and JBD, you'll have some duplication of information among drives. This will let you keep on going and recover if any one drive fails. In some variations, you can have more than one drive fail.

RAID 5 is in theory a combination of all of the above, with a pretty cool and efficient solution for redundancy. In practice however, it takes several drives and good hardware to get the performance up.

RAID 0 gives in theory the best performance with no redundancy and the greatest data risk -- because you lose everything if you lose any single drive, your data risk is higher than with single disks.

RAID 1 gives good redundancy and simplicity, and potentially increased read performance, but with high storage cost.

For the most part, my personal advice would be that if you're only dealing with a couple of 100's of GB's, then you're likely to be better off not getting into RAID. (Modern HD's are pretty fast, and performance can be complicated.)

If you're dealing with several 100's of GB's, and putting together a reliable storage device, then you should probably be using RAID 5, or higher. I'd further advise always keeping the OS on a separate drive for simplicity and stability. Finally, I'd echo the advice that RAID is not in itself a backup, and you should have a separate backup of your important stuff -- esp. data that you've created yourself.
 
RAID-0 is the most common RAID used in single-user PCs. It connects (at least) two drives together into an Array so that they look like one large volume. An equal split of the data is written to each drive at the same time thus the theoretical double speed. Go to StorageReview.com or the other side of Anandtech for articles with lots of detail. And here is a thread with lots of data on a real-world array: http://i4memory.com/showthread.php?t=1026

And here is another review which sets up two and four drive arrays of very cheap SATA HDDs: http://www.digitalelements.org/index.php?name=MReviews&op=show&rid=21 .

The increased performance is mainly in sequential reads/writes such as booting and loading programs and large blocks of sequential data. Random access times aren't improved much.

As mentioned above, running RAID-0 is riskier than a single drive as one error can lose twice the data.

"Running RAID-0 without a verified backup is like flying experimental aircraft without a parachute." (c) Me, several years ago.

.bh.
 
Back
Top