Configuring a RAID (OBJ 3.4)

Overview of Software RAID on Windows

  • A software RAID setup allows combining multiple physical disks into a single logical unit for improved performance or redundancy.

Types of RAID Demonstrated

  1. RAID 0 (Striped Volume)

    • Purpose: Increased performance and speed.
    • Data Splitting: Data is divided and stored across two or more disks. Each disk holds a portion of the data, which enhances read and write speeds.
    • Risk of Data Loss: If any one of the disks fails, all data is lost.
    • Setup Steps:
      • Initialize the disks in Disk Management.
      • Right-click on the first disk and select "New Striped Volume."
      • Add the second disk to the setup.
      • Assign a drive letter (e.g., drive D) and give it a name (e.g., "editing").
      • Completion leads to a logical drive (e.g., D drive) of combined capacity.
      • Example: Two 800 GB disks provide a total of 1.57 TB storage for drive D, though any failure results in total data loss.
  2. RAID 1 (Mirrored Volume)

    • Purpose: Data redundancy.
    • Data Redundancy: All data is duplicated between two disks, ensuring that if one disk fails, data is still safe on the other.
    • Capacity Limitation: Only one disk's worth of space is usable since both disks must hold identical data. This typically results in a 50% overhead in terms of storage capacity.
    • Setup Steps:
      • Use the remaining two disks to create a mirrored volume in Disk Management.
      • Similar steps as RAID 0, with selection of the disks and assigning the new drive a letter (e.g., drive R).
      • Naming example: "redundant."
      • Following setup, the F drive will hold the same data as its mirrored counterpart for redundancy.
    • Fault Tolerance: If one disk goes offline, the other continues functioning normally.
    • Space Sacrifice: The user trades off storage space for data protection.

Personal Choices and Applications

  • The speaker chose both RAID types for different purposes:
    • RAID 0 for a scratch drive used for video editing, prioritizing performance.
    • RAID 1 for storing finished products, emphasizing data safety and redundancy.
    • This reflects a common decision-making process when configuring disk storage, weighing the needs for speed versus redundancy for different use cases.