New Page 1
Recently one of my friend asked me what do I think of Raid 0 which he is thinking of implementing in hisserver / workstation. So I grabbed a few books and went through and this is what I found.
"RAID" stands for "
Redundant Array of Inexpensive Disks
", (now being reinvented the term todescribe a
redundant array ofindependentdisks
as a means of disassociating a "low cost"expectation from RAID technology) and refers to several different ways to use multiple hard drives toeither increase performance, reliability or both. RAID is typically transparent to you or the operatingsystem, other than the fact that there is a dedicated piece of hardware, known as a RAID controller, thatmanages the distribution of data across the drives.
Various standard configurations of RAID drives, typically referred to as "RAID arrays", have been labeledwith numbers to differentiate the differing arrangements.RAID 0 uses two (or more) drives to increase performance.
The approach is this: when you write data to the logical (say, "C:") drive, the data is interweaved insome way such that half of it is written to one physical drive, and half on the other. Effectively, thisdoubles the speed of your hard disk, since the computer can essentially be writing to both at the sametime, instead of writing the same amount of data in two steps to a single drive.
Sounds like a nifty approach, right? You get the same amount of space as you would with two individualdrives, but you get it twice as fast.
The problem is that you get twice as much of something else as well: chance of failure and catastrophicdata loss.
If one drive has, say, a 1 in 1,000 chance of failure, then two drives have a 2 in 1,000 chance.
Now, if you have two separate drives you still have that same 2 in 1,000 chance ofoneof them failing -but all you lose is what's on that one drive that fails. In a RAID 0 configuration, you've doubled yourchances of failure, and when failure happens, all of your dataon both drivesis lost.
Think of it this way: if we take a simple sentence like:
RAID 0 configurations are a bad idea.
and sliced it in half such that every other letter was "on alternate drives", this might be what appears oneach drive:
Drive 1: R I o f g r t o s a e a b d i e .Drive 2: A D 0 c n i u a i n r a d a
Together they're easy (and quick!) to combine into the original sentence. Take away either one and theother is so much gibberish.
RAID 0 is valuable as a speed enhancement only if you're willing to take double the risk of failure. Thatmeans either that it's OK if the failure happens and you lose the data, or you're conscientious aboutmaking sure that it's backed up regularly and thoroughly.
What's frustrating, in part, is that once you have a RAID controller anyway, with the addition of a third(inexpensive) drive you can get all that speed as well as fault tolerance using different RAIDconfiguration.
Using RAID 5, a third drive contains "parity" information - kind of the "C" in an "A + B = C" type of equation - lose any of A, B or C and it can be recalculated from the other two. In the world of hard disk
Page 1
Leave a Comment
Thank You Boss.I'm also a student of Mr.Hati..