Questions tagged [raid5]

RAID (redundant array of independent disks, originally redundant array of inexpensive disks[1][2]) is a storage technology that combines multiple disk drive components into a logical unit. Data is distributed across the drives in one of several ways called "RAID levels", depending on what level of redundancy and performance (via parallel communication) is required. RAID 5 is a specific implementation.

RAID 5 (block-level striping with distributed parity) distributes parity along with the data and requires all drives but one to be present to operate; the array is not destroyed by a single drive failure. Upon drive failure, any subsequent reads can be calculated from the distributed parity such that the drive failure is masked from the end user. However, a single drive failure results in reduced performance of the entire array until the failed drive has been replaced and the associated data rebuilt. Additionally, there is the potentially disastrous RAID 5 write hole. RAID 5 requires at least three disks.

enter image description here

Source: wikipedia

530 questions
0
votes
0 answers

Unable to add drive as active to array

I swapped out a failing drive using the following tutorial First I removed the drive with: mdadm --manage /dev/md0 --fail /dev/sdc1 mdadm --manage /dev/md0 --remove /dev/sdc1 Added and formatted the new drive sfdisk -d /dev/sda | sfdisk…
David
  • 107
  • 3
0
votes
1 answer

Different sizes of drives - proper RAID setup

We need to setup a Dell server w/ a PERC controller (I forget the exact models because I don't have access to the datacenter, but I can get that information if vital). I have 8 drives like below: 5 x 1.2 TB 2 x 1 TB 1 x 600 GB This is going to be a…
Mugurel
  • 903
  • 1
  • 9
  • 17
0
votes
1 answer

How to temporarily remove RAID5 drives

Situation: I have a 3-drive (SSD) software RAID5 (mdadm) array (SATA) on the server (Linux Debian 8.5) for data only. I need to temporarily remove these drives in order to do something with some other drives. Questions: What is the correct…
0
votes
0 answers

storage sizing for serving high bit rate video

I'm looking at deploying a server for high bit rate video streams up to 250 Mbps. There are 8 clients in the network which at any given point may be playing any given stream, so a worst case scenario is 8 x 250 Mbps or 2000 Mbps. How would I go…
0
votes
1 answer

What are the consequences of a hot-spare dying during an array rebuild?

We've experienced a failure of the hot-spare during reconstruction of a failed disk in a RAID5 array. As it seems, we actually lost some data over this, at least the storage bay is giving I/O read errors on some blocks. The question is: Why can't…
Marki
  • 2,854
  • 3
  • 28
  • 45
0
votes
2 answers

RAID5 recreate without loosing data or recovery

I have problem with RAID5 failed. Intel Matrix Storage on Asus motherboard The configuration was - 500 GB NON RAID (System C partition) - 1 TB - RAID 5 with 3 hard drive (System D partition) Main problem is that before failure - array was in…
Krystek
  • 11
  • 1
  • 1
0
votes
1 answer

Replacing RAID Control Battery DELL PowerEdge 2950

My DELL OpenManage Server Administrator shows 'Battery on Controller PERC 5/i Integrated state as Failed'. I purchased the RAID Controller Battery. But, Will it remove my RAID-5 Configuration if I change the battery ?
Yesudass Moses
  • 181
  • 1
  • 3
  • 11
0
votes
1 answer

Raid Controller: Activating Write Back

We need to activate "write back"-mode on a raid controller in a storage server. Do i need to reinstall the operating system or rebuild the raid setup after activating write back? We can´t test it, because the server which needs to be configured is…
aft2d
  • 11
  • 2
0
votes
0 answers

Synology DS1813+ RAID 5 with iSCSI IO wait perfomance issue

I'm have RAID 5 on Synology DS1813+ (DSM Version: DSM 5.0-4493 Update 4) with 8 ST4000DM000-1F2168 disk, usind as NAS and iSCSI/NFS targer for ESXi. In low read/write rate from disk have more io wait, please have you any ideas? SRV1> uname -a Linux…
t3mp
  • 111
  • 2
0
votes
1 answer

Setup SunFire 440 Raid Configuration

How can I setup Internal Hard disk RAID5 configuration? I have SunFire 440 machine with 4 internal hard disk. I have never worked on Sun systems except for now and I am exploring google for the above solution. If anyone could help me out.
Megamind
  • 1
  • 1
0
votes
2 answers

Dell PowerEdge T410 Raid 5 PERC S300 stuck on 0% while rebuilding

Edit: I upgraded Open Manage Server Administrator and now I receive the following message when I attempt to assign the new disk as a global hotspare: Caution Physical Disk 0:0:0: This Physical disk is not suitable to protect all current or…
Gage Trader
  • 161
  • 2
  • 8
0
votes
2 answers

Does data get bottlenecked when copying from one server to another when the two servers have different RAID configurations?

Suppose Server 1 is configured with 8 1TB disks in RAID 5. Server 2 is configured with 8 1TB disks in RAID 0. There is a link between the two servers but for the purpose of this question, lets suppose that the link speed is unlimited. I want to copy…
0
votes
0 answers

Raid 1 and Raid 5 with Debian 8 Install

Ive been advised that i should install Debian 8 using the following raid configuration: Raid 1 (2 discs) - for OS Raid 5 (4 discs) for data. This way, i can have 2 disc failures and still have a running system. The question i have is, on the Debian…
0
votes
0 answers

RAID 5 keeps failing after recovery

I have configured a raid 5 with 6x2TB devices with mdadm (I shrinked it from 9 devices to 6): /dev/md0: Version : 1.2 Creation Time : Mon Sep 23 17:54:25 2013 Raid Level : raid5 Array Size : 9762030080 (9309.80 GiB 9996.32 GB) …
WhiteIntel
  • 131
  • 1
  • 7
0
votes
1 answer

Best RAID level for NAS

I just bought my first computer that I'm going to run as a NAS with OpenMediaVault as OS. I bought two HDD (WD red 5400 rpm) with the capacity of 3TB each (and one 120GB SSD that I'm going to run the OS on). Now as I nearly finished the building…