Hoodoo said:
For today's consumer applications, RAID arrays offer a way to combine 2 or more smaller hard drives to act like one, faster, larger hard drive-- i.e. take two 80 Gb hard drives and create a RAID so that it becomes a faster 160 GB storage drive. Or, you can use it as explained previously-- one drive mirrors the other exactly so that if you lose one drive, another has automatically backed up the data.
In either case, I have found that RAID arrays only offer marginal improvements to performance, and that my backup process (manual to CD/DVD) is sufficient. Personally, I'd stay away from RAIDs and just buy the biggest, fastest hard drive you can budget.
Just to add a little to this...
The speed increase in Raid format is because of the following (assume two disks):
- the "system" can assign a chuck of data to be written to drive "A"
- while drive "A" is writing that data, the system can assign the next chunk of data to be written to drive "B".
Since the time-to-write-the-data-to-disk is the limiting factor, you divide that action over multiple disks. The net effect is that the write times overlap. Before drive "A" finishes writing, drive "B" is starting it's chunk. You end up with each file spread over two disks but the read and write times have increased because both drives can/might be reading (or writing) at the same time.
The next issue is mirroring. Since every file is spread over multiple disks, if you lose one disk you have lost half of each of your files. In that case the file(s) are useless. The only solution is replace the problem disk and restore your last backup/saved version. (What? No backups?)
There are several Raid setups: Raid, Raid plus mirror, straight Mirroring.
Oh, it's usless to take two drives and go Raid plus mirror. As explained in another post, a mirrored disk is a copy of the data from one disk that is stored on another disk - if one disk fails you still have the copy and the system will automatically go to it if needed. But with two disks you are overloading the system. You are writing chucks to drive 'A' and copying "A" to drive "B" plus writing the alternating chunks to Drive "B" and copying those chucks to drive "A". (yikes). Net result is writing the file to both disks.
One last thought, if you do go any flavor of Raid it's is HIGHLY recommended to use disks of the same speed and size. The slowest disk will determine your overall speed. And you don't want the larger disk to be writing to the 41GB position when you paired it with an 40GB disk.
Um... I hope that made sense.
Roger