Questions tagged [raid-0]

Redundant Array of Independent Drives or Redundant Array of Inexpensive Drives also known as RAID is a way to create a sub-storage system comprising several individual discs. RAID-0(also know as striping) is the level of RAID technique used to improve read performance. Over this configuration the data are subdivided into consecutive segments (stripes, or bands) that are written sequentially through each of the disks of an array or set.

Redundant Array of Independent Drives or Redundant Array of Inexpensive Drives also known as RAID is a way to create a sub-storage system comprising several individual discs.

RAID-0 "Stripe" is the level of RAID technique used to improve read and write performance compared to using a single drive. In this configuration the data is subdivided into segments and these segments are written to alternate drives.

As an example Drive 1 will get the first block of data, Drive 2 will get the second block of data. If there are only two drives in the array the next block of data will get written to the first drive and so on. This means that the read and write performance of the array is typically somewhere near the combined total throughput of both drives but there is a higher risk of catastrophic data loss due to the fact that data is now spread across two disks. As such if one disk fails then the other disk contains only half the required data and recovery is impossible.

This is in contrast with RAID-1 "Mirror" arrays where, due to the data being copied to two drives instead of one, the reliability is increased due to both drives being identical (if one drive fails you still have your data) but there is no performance increase.

218 questions
43
votes
4 answers

Is there a RAID 0 Equivalent for RAM?

With hard drives, you can put them in a RAID 0 configuration to split data between drives to increase read and write speed. Is there an equivalent of this for RAM? If I have 16 GB of memory, for instance, can I split it into 2 8GB sections and…
tklodd
  • 765
12
votes
12 answers

Does RAID 0 (striping) with two SSD hard disk make any sense?

I have a notebook (Dell M6500, 16GB Ram, I7-940M) with RAID controller (hardware raid controller). At the moment I have two SATA HDDs in RAID 0 (stripe) for best performance. I want to buy SSDs (Samsung 840 pro). Does RAID 0 (striping) with two SSD…
Andrea
  • 233
  • 1
  • 2
  • 8
11
votes
11 answers

Can someone explain RAID-0 in plain English?

I've heard about and read about RAID throughout the years and understand it theoretically as a way to help e.g. server PCs reduce the chance of data loss, but now I am buying a new PC which I want to be as fast as possible and have learned that…
9
votes
2 answers

How do I clone a RAID 0 array to a single disk?

Situation: One empty 120GB SSD Two 60GB SSD's is RAID 0 containing a Windows 7 installation The RAID is firmware-based (a.k.a. fakeRAID) which means it requires a driver for it to be seen by an operating system. I don't want to use RAID 0 anymore;…
8
votes
3 answers

optimal SATA SSD configuration in new PC

I'm sold on SATA SSDs for my next PC but since their prices grow un-proportionally to their size, I'm wondering what would be the best configuration for them (for OS and Programs) would be: 2 SSDs using: on-board RAID0 dedicated RAID controller…
travis
  • 913
8
votes
3 answers

To RAID or not to RAID: SSDs and virtualization

I am approaching that time where my main PC has slowed enough due to Windows rot that I should probably reinstall. Instead of spending a week arm-wrestling, reinstalling and configuring only to find that I forgot to back up my Visual Studio settings…
Chad Levy
  • 1,010
8
votes
3 answers

Practical RAID Performance?

I've always thought the following to be a general rule of thumb for RAID: RAID 0: Best performance for READ and WRITE from stripping, greatest risk RAID 1: Redundant, decent for READ (I believe it can read from different parts of a file from…
wag2639
  • 7,244
6
votes
4 answers

raid 0 data recovery?

I have two identical seagate 7200.9 500Gb drives confiured as a RAID 0 spanned disk in windows. One of the drives has lost power and wont spin up at all. I know this normally means death for the data on both drives but i have a cunning plan.. DISK 1…
Fred
6
votes
1 answer

How to automount ntfs partation on raid0 in arch linux with systemd

Recently, I switched from initscript to systemd followed this wiki, and I got error like this during boot: Job dev-md126p5.device/start timed out This is my fstab: /dev/mapper/VGLinux-lvroot / ext4 rw,relatime,stripe=64,data=ordered 0…
dawnstar
  • 161
6
votes
1 answer

How can I optimize the speed and lifetime of SSDs used in a RAID-0?

I have two SSDs in RAID-0 on a Windows 7, 64-bit system. Since it appears that TRIM still isn't supported with any RAID configuration of SSDs, what are some tips/workarounds that I can use? Some things, but not limited to, that I would like to…
James Mertz
  • 26,529
6
votes
2 answers

Will my RAID0 stay intact when I move it to a new computer?

My primary drive is a 250GB WD SATA drive. So, I added 2x 500GB 7,200 RPM WD SATA drives into my Windows Vista box and created a 1TB RAID0. I then formatted the the primary drive and installed Windows 7. To my pleasant surprise when I booted into…
5
votes
3 answers

Is RAID 0 stripe size the amount placed on each disk? Or the total block size?

In RAID0 take a stripe size of 64k Is stripe size the amount placed on each disk? Disk A 64k (stripe size is 64k) Disk B 64k or Is the stripe size the total size of the block that is fed to the set of disks? Disk A 32k (stripe size is…
Psycogeek
  • 9,139
5
votes
3 answers

RAIDing flash drives

The other day I had what I thought was a great idea - I could buy up a bunch of cheap USB 2.0 drives and fill up the spaces in my 7-port USB hub for a super-fast RAID device! But in the light of day it isn't looking so good. I think that this…
5
votes
5 answers

Why Clonezilla doesn't recognize RAID0 drives - and how to fix it?

I have a not-so-recent HP desktop PC (model# m9510f, Q8200 CPU - I think it was manufactured in early 2009 sometime, because it still had Vista 64-bit). I've set it up with a pair of 500GB drives that I want to run in RAID0 striped mode (for higher…
Alex R
  • 1,862
5
votes
5 answers

How to improve Primary hard disk rate on Windows 7 Experience Index?

I’m getting confused with Windows 7 experience index; because on one of my home computers with 2 hard disks 7200 rpm configured with RAID 0 I got 5.9 as score on “ Disk data transfer rate “, while on another computer which had only one hard disk…
1
2 3
14 15