0
836views
List the advantages, disadvantages of RAID level 0,1,5
1 Answer
0
0views

Raid Level 0 :

1.Implements a stupid disk array, the data is broken into blocks & each block is written to a separate disk drive.

2.Uses entire disk capacity

3.Minimum two drives are required to implement

4.Application :- Video & image processing

enter image description here

Advantages :-

1.Improved performance for Input/Output operations as the I/O load is distributed across several channels & drives.

2.Best performance is delivered as data is striped across multiple controllers with only one drive per controller.

3.Provider high- speed improvement, particularly for write operations as read & write requests both are evenly distributed across all the disks in the array.

4.Less overhead as no priority calculations.

5.Implementation is easy.

6.Design is simple & it is cheap

Disadvantages :-

1.Does not provide fault tolerance

2.Results in complete data loss as a result of failure of just one drive

3.Not suitable for mission critical environment.

Raid Level 1:

1.The drawback of RAID 0 of no fault tolerance is removed in RAID 1.

fault tolerance is provided by mirroring the data.

2.It does not facilitate striping.

3.Minimum two HDD's required.

4.The data written to both the disk is transparent to the host.

5.If the first disk fails to provide data, the mirrored drive is used by the RAID controller for data recovery & contiguous operation.

enter image description here

Advantages:-

1.Provides high availability & data protection

2.To provide high performance, the controller needs to perform two concurrent reads & write operations per two drives.

3.One write & two reads are possible per mirrored pair.

4.Provides 100% redundancy. Hence in case of disk failure, data from the mirrored drive is just copied & the failed disk is replaced.

5.Design is simple.

Disadvantages :-

1.It has high disk overhead.

2.When implemented using s/w, does not support not swap of failed disk.

Application:-

1.Banking Applications

2.Payroll Management

3.Application which require high availability

3.RAID 5:

1.In RAID 5 the parity is distributed across all the disks.

2.RAID 5 is secure & fits to a large, reliable & relatively cheap storage.

3.Minimum three disks can be used to realize RAID 5 level.

4.The parity is used to reconstruct the data of one of the failed disk whose data no longer be available.

enter image description here

Advantages:-

1.I/O rate for read operation is quite fast whereas I/O rate for write operations are slightly slow.

2.All data is accessible even if a drive facts, which gives sufficient time to replace the failed drive & the storage controller can relieved the data on the new drive.

Disadvantages:-

1.Throughout is affected whenever a drive fails.

2.RAID 5 is complex technology.

Applications of RAID 5

1.Transaction processing

2.File & Print Servers.

3.Database operations

4.Emails, etc

Please log in to add an answer.