The Raid levels architecture and levels

Asked By 0 points N/A Posted on -
qa-featured

I have a series of questions about RAID levels can any expert help me out in explaining about RAID levels and its architecture in clod computing

SHARE
Best Answer by daniel.m
Best Answer
Best Answer
Answered By 0 points N/A #82103

The Raid levels architecture and levels

qa-featured

Hi,

RAID is defined as Redundant array of independent disks where as coming to the RAID levels in cloud computing we have different levels they are :

  • RAID 0
  • RAID 1
  • RAID 5
  • RAID 6
  • RAID 10
  • RAID 50.

These are the RAID  levels in cloud computing . The architecture of RAID levels is as follows

RAID 0 : It Stripes the data across multiple disks such  that  the read/write tasks can be shared by more disks.

 RAID 1: it is used for creating of mirrored configuration of paired disks the each disks contains a complete copy of the data

RAID 5 :It  Groups three or more disks together with capacity set aside which is used for distributed parity data for re- creation of any data which is lost

RAID 6 : It is same as RAID 5 but here it provides two parity disks where as RAID 5 provides one It is a four disk RAID set

RAID 10 : Its architecture Equals RAID 1 + RAID 0. 

RAID 50 : The architecture of RAID 50 equals RAID 5 + RAID 0. The data over here stripes across multiple RAID 5 sets

Answered By 590495 points N/A #82104

The Raid levels architecture and levels

qa-featured

RAID stands for Redundant Array of Inexpensive Disks. It is a technology utilized to boost the performance and consistency of data storage. The RAID system is composed of two or more disks that are working in parallel. The disks used in a RAID system can be a hard drive but there is a trend that also uses the technology for SSDs or Solid State Drives.

RAID level 0 – Striping

In this level, data are divided into blocks and get written across every drive in the array. By utilizing multiple disks simultaneously, at least 2, this gives greater Input/Output performance. The advantages for this level include: offers great performance both for the read and write operations, no disk overhead because all storage capacity is used, and the implementation of the technology is easy.

The disadvantage is that level 0 is not fault-tolerant. If one of the disks fails, all data in the array are lost. This level is perfect for non-critical data storage like for example in a Photoshop image retouching shop where data have to be written and read at a high speed.

RAID level 1 – Mirroring

In this level, data are saved two times by writing them both to the data disk and to the mirror disk. The data disk can be a group of data disks and the mirror disk can also be a group of mirror disks. If there is one disk that fails, the controller uses the mirror drive or the data drive for data recovery and continuous operation.

Most of the time RAID level 1 is combined with RAID level 0 to enhance the performance. The advantages for this level include: offers outstanding read speed and the write speed can be compared to that of a single disk, when a disk fails data don’t have to be rebuild because they just need to be copied to the replacement disk, very simple technology.

The main disadvantage for level 1 is that only half of the total disk capacity is the efficient storage capacity for the reason that all data have to be written twice.

Related Questions