Raid System: Kanik Kehar
Raid System: Kanik Kehar
Kanik Kehar
E-mail- [email protected]
Abstract
4.3 Parity
Figure 1 showing the mirroring technique used Mirroring and striping are fairly easy to
understand. Parity however is a bit more
4.2 Striping complicated. In the same way as with
mirroring, it is used to improve the
Whereas mirroring and parity deal with availability but without the waste of space.
improvement of reliability, striping is used If you have X number of data elements,
to get higher performance. The idea is to they can be used to create a parity. Then
split data into small pieces, which then are you end up with X+1 data elements. It is
distributed across the disks. This way the always possible to recover a lost element
disks can work in parallel with different by using the others. The advantage with
pieces of data. You will not lose any disk parity is of course that you have no single
space as with mirroring and striping. One point of failure. However, to achieve this,
big disadvantage with this method is that if it will cost a lot of computing power.
one disk breaks, all data will be lost.
Therefore it is most often not used
alone but in combination with mirroring or
parity. Only such data that can be recreated
by the application, such as cache or other
temporary stored data is recommended to
store using only striping.
5.2 RAID 1
5.5 RAID 4
RAID 1 is the easiest way to get data
redundancy. It uses mirroring to store two RAID 4 is very similar to RAID 3. The
copies of all data on two separate disks. difference is that it use larger blocks of
Many computer systems need high data than RAID 3 does. This makes it
availability without the requirement of possible to change the data stripe size to
more performance. In that case RAID 1 suit the applications needs. In the same
can be a good solution. Neither RAID way as with RAID 3, however, the extra
0 nor RAID 1 uses much computing parity disk will have a negative
power. The RAID controllers that handle impact on performance.
these two RAID levels are therefore
cheaper than controllers for higher RAID
levels. 5.6 RAID 5