raidisnotabackup/content/1.md

18 lines
1.2 KiB
Markdown
Raw Normal View History

2016-09-28 12:01:40 -04:00
+++
title = "What is RAID?"
description = "RAID stands for 'Redundant Array of [Independent/Inexpensive] Disks'"
weight = 1
type = "post"
class="post first"
+++
2017-02-22 00:41:44 -05:00
RAID is a common technique to provide _resiliency_ and _availability_ to a set of data and protect against one of the most common data loss scenarios: the failure of a disk.
2016-09-28 12:01:40 -04:00
2017-02-22 01:03:24 -05:00
The simplest type of RAID is a 'mirror', which keeps two or more copies of data on two or more different disks. If one disk fails, the second copy is still available and no data loss has occurred. You would usually see this for system disks in uptime-critical servers.
2016-09-28 12:01:40 -04:00
2017-02-22 01:03:24 -05:00
There also exist more advanced modes, the most common of which are RAID-5 and RAID-6, and consists of 3-4 or more disks with data stripped (written sequentially), along with parity information, across all disks.
2016-09-28 12:01:40 -04:00
2017-02-22 01:03:24 -05:00
It's worth noting that a pure 'stripe', also called RAID-0, is not really a RAID level - it *increases* the risk of data loss rather than decreasing it, since one disk failure destroys the whole array. It should never be used for redundancy or any critical data.
2016-09-29 13:27:42 -04:00
The [Wikipedia page for RAID](http://en.wikipedia.org/wiki/RAID) provides some helpful information about the history and benefits of the various RAID implementations.