SlideShare a Scribd company logo
1 of 32
RAID Technology



                  By Nagendra Srivastava
CONTENT


Introduction
Techniques/methods
       Mirroring
       Striping
       Parity
   Advantages and Disadvantages
   Uses
   Conclusion
What is RAID

                        History

>   It first defined by David A. Patterson, Garth A. Gibson, and
    Randy Katz at the University of California, Berkeley in 1987 to
    describe a redundant array of inexpensive disks.

>   What is RAID - It is a technology that allowed computer users
    to achieve high levels of storage reliability from low-cost and
    RAID allows you to store the same data redundantly (in multiple
    paces) in a balanced any to improve overall performance.
Benefits of RAID

> Data loss can be very dangerous for an
 organization
> RAID technology prevents data loss due to
 disk failure
> RAID technology can be implemented in
 hardware or software
> Servers make use of RAID technology
Hardware vs. Software RAID


> Software RAID
  • Software RAID: run on the server’s CPU
  • Directly dependent on server CPU performance and load
  • Occupies host system memory and CPU operation,
      degrading server performance

> Hardware RAID
  • Hardware RAID: run on the RAID controller’s CPU
  • Does not occupy any host system memory. Is not operating
      system dependent
  •   Host CPU can execute applications while the array adapter's
      processor simultaneously executes array functions: true
      hardware multi-tasking
RAID


  • Redundant Arrays of Independent Drives
  • Benefits
   – Improved data availability
   – Improved I/O performance
   – Increased scalability

  • Levels supported by Array controllers
   –   RAID 0 – Data striping
   –   RAID 1 – Drive mirroring
   –   RAID 4 – Data guarding
   –   RAID 5 – Distributed data guarding
   –   RAID 6/ADG - Advanced data guarding
   –   RAID 0+ 1 – Mirroring and striping
Single Drive and Drive Arrays




      Single Drive         Drive Arrays
Drive Array Features


   • Data striping across multiple drives
   • Multiple channels
   • Request processing


                Single           Fixed Disk Drive
                Drive             1   Array 3
                                        2             4
                   1
                       2
                       3
                   4
                                       1234

                           Drive Array Organization
Techniques/Methods


Mirroring


Parity
    10101010 XOR 11111111 = 01010101
    11111111 XOR 01010101 = 10101010
    10101010 XOR 01010101 = 11111111
Techniques/Methods (cont’d)


 Striping
RAID Level 0 — Data Striping




      File divided into chunks (or segments) and then
      written (striped) across multiple drives
RAID 0


 Uses striping
    I/O performance gain
    No Data redundancy
 Not fault tolerant
 Not considered “true” RAID
Striping Factor

                  64KB Host Data




                         Fixed Striping Factor Based on Drive Sizes
RAID Level 1 — Drive Mirroring




      Data Written to Two or More Separate Mirrored
                          Drives
RAID 1

Uses mirroring
  Also known as duplexing
Fault tolerant
High Disk overhead
  Mirroring typically handled system software
Simplest RAID design
RAID Level 0+1




  Disk 0 is mirrored to disk 2 and disk 1 is mirrored to disk 3.
 Then disk 0 is striped with disk 1 and disk 2 is striped to disk 3.
RAID 0+1
RAID 0+1

   RAID 1+0 requires an array with four or more physical
   disks. The disks are mirrored in pairs and data blocks are
   striped across the mirrored pairs

  Advantages
     Highest read and write performance
     No loss of data as long as no failed disks are mirrored to any
      other failed disk


  Disadvantages
     Expensive and Low disk capacity
RAID Level 4 — Data Guarding




     Data striped across multiple drives and then its parity
    sum is calculated and written to a dedicated parity drive
RAID 4



 Advantages:                  Disadvantages:
 Very high read rates        Very slow write rates
                                  Even small writes fill up
    Multiple files read at        parity write queue
     once
                              Inefficient data
                               recovery
 Uses:                        Even more Complex
 Web Servers, and              Controller Design than
   other high read, low         RAID 3
   write situations
RAID Level 5 — Distributed Data
   Guarding




Data is striped across multiple drives and then its parity sum
calculated and striped across multiple drives. Example of 64KB
striped across five drives using 4KB chunks.
RAID 5

   RAID 5 uses a parity data formula to create fault tolerance.
   In RAID 5 each block of data stripe contains parity data that
    is calculated for the other data blocks in that strip.
   The blocks of parity data are distributed over the physical
    disks that make up the logical drive with each physical
    disk containing only one block of parity data
   It is referred to as data guarding.
   Advantages
            High read performance
            No loss of data if one physical disk fails
            More usable disk capacity
     Disadvantages
            Relatively low write performance
            Data loss occurs if a second disk fails before data from the first
             failed disk is rebuilt
RAID ADG (Advanced Data Guarding)

> RAID ADG is similar to RAID 5 except this RAID level writes 2 sets of
  parity stripped across all drives.
> Protects against failure of ANY 2 drives in the array




              A            B           C            P          Q
              D            E           P            Q          F
              G            P           Q            H          I
              P            Q           J            K          L




                                 RAID ADG
RAID ADG (Advanced Data Guarding)

> P = f1(A, B, C) = RAID 5 Parity
> Q = f2(A, B, C) = new ADG Parity




             A           B           C   P   Q
             D           E           P   Q   F
             G           P           Q   H   I
             P           Q           J   K   L




                              RAID ADG
RAID ADG (Advanced Data Guarding)


> If 2 parity drives are selected, the system can sustain failure of ANY 2
  drives.




                     X                                      X
            A            B            C            P            Q
            D            E            P            Q            F
            G            P            Q            H            I
            P            Q            J            K            L




                               RAID ADG
RAID ADG (Advanced Data Guarding) or
RAID 6

    RAID advanced data guarding sometimes referred to as RAID
    6, is similar to RAID 5 in that parity data is generated and
    stored to protect against data loss caused by physical disk
    failure

   Advantages
     High read performance
     High data availability
     More usable disk capacity
RAID 10


 Combining RAID 0 and RAID 1 is often referred to as RAID 10
 which offers higher performance than RAID 1 but at much
 higher cost

   Uses multiple (mirrored) RAID 1 in a single array
   Data striped across all mirrored sets
   Very high fault tolerance
   High performance rate
RAID 10




Characterized by:
     Each drive duplicated
     High implementation cost
Comparing RAID Levels



                RAID 0          RAID 1             RAID 5              RAID 10

Read              High              2X                High                 High
Write             High              1X              Medium                 High
Fault              No              Yes                Yes                  Yes
tolerance
Disk              High             Low                High                 Low
utilization
Key           Data lost       Use double the   Lower throughput    Very expensive, not
problems      when any disk   disk space       with disk failure   scalable
              fails
Key           High I/O        Very high I/O    A good overall      High reliability with
advantages    performance     performance      balance             good performance
On-Line Spare

 • Replacement for failed drive
 • Requires hardware fault tolerance
 • Background rebuild process
 • Four On-Line Spares maximum (Smart
  Array controller)

             Mirrored                              Mirrored
             Pair                                  Pair
                                  Mirrored
                                  Pair
             On-Line                               On-Line
             Spare                                 Spare
   Before               During               After
   Failure              Failure              Replacement
Conclusion


 So what have we learned here?
 Well we have learned that RAID is not just a
 bug spray. RAID is a good solution for
 companies or individuals carving more
 transfer performance, redundancy and
 storage capacity in their data storage
 systems.
Thanks

More Related Content

Similar to Nagendra Srivastava

From java to rails
From java to railsFrom java to rails
From java to rails
jokry
 
Data center core elements, Data center virtualization
Data center core elements, Data center virtualizationData center core elements, Data center virtualization
Data center core elements, Data center virtualization
MadhuraNK
 
Ashish pandey huawei osi_days2011_cgroups_understanding_better
Ashish pandey huawei osi_days2011_cgroups_understanding_betterAshish pandey huawei osi_days2011_cgroups_understanding_better
Ashish pandey huawei osi_days2011_cgroups_understanding_better
OpenSourceIndia
 
Cisco catalyst 4900 series switches
Cisco catalyst 4900 series switchesCisco catalyst 4900 series switches
Cisco catalyst 4900 series switches
IT Tech
 
Ashish pandey huawei osi_days2011_cgroups_understanding_better
Ashish pandey huawei osi_days2011_cgroups_understanding_betterAshish pandey huawei osi_days2011_cgroups_understanding_better
Ashish pandey huawei osi_days2011_cgroups_understanding_better
suniltomar04
 
Analysis process designer (apd) part 2
Analysis process designer (apd) part   2Analysis process designer (apd) part   2
Analysis process designer (apd) part 2
dejavee
 
Divyanshu open stack presentation -osi-ppt
Divyanshu open stack presentation -osi-pptDivyanshu open stack presentation -osi-ppt
Divyanshu open stack presentation -osi-ppt
OpenSourceIndia
 
Divyanshu open stack presentation -osi-ppt
Divyanshu open stack presentation -osi-pptDivyanshu open stack presentation -osi-ppt
Divyanshu open stack presentation -osi-ppt
suniltomar04
 

Similar to Nagendra Srivastava (20)

Intro to Table-Grouping™ technology
Intro to Table-Grouping™ technologyIntro to Table-Grouping™ technology
Intro to Table-Grouping™ technology
 
From java to rails
From java to railsFrom java to rails
From java to rails
 
Data center core elements, Data center virtualization
Data center core elements, Data center virtualizationData center core elements, Data center virtualization
Data center core elements, Data center virtualization
 
Ashish pandey huawei osi_days2011_cgroups_understanding_better
Ashish pandey huawei osi_days2011_cgroups_understanding_betterAshish pandey huawei osi_days2011_cgroups_understanding_better
Ashish pandey huawei osi_days2011_cgroups_understanding_better
 
RAID
RAIDRAID
RAID
 
Raid
RaidRaid
Raid
 
Hadoop 20111215
Hadoop 20111215Hadoop 20111215
Hadoop 20111215
 
The Application Development Landscape - 2011
The Application Development Landscape -  2011The Application Development Landscape -  2011
The Application Development Landscape - 2011
 
Webinar: Top 5 Mistakes Your Don't Want to Make When Moving to the Cloud
Webinar: Top 5 Mistakes Your Don't Want to Make When Moving to the CloudWebinar: Top 5 Mistakes Your Don't Want to Make When Moving to the Cloud
Webinar: Top 5 Mistakes Your Don't Want to Make When Moving to the Cloud
 
Cisco catalyst 4900 series switches
Cisco catalyst 4900 series switchesCisco catalyst 4900 series switches
Cisco catalyst 4900 series switches
 
Ashish pandey huawei osi_days2011_cgroups_understanding_better
Ashish pandey huawei osi_days2011_cgroups_understanding_betterAshish pandey huawei osi_days2011_cgroups_understanding_better
Ashish pandey huawei osi_days2011_cgroups_understanding_better
 
Raid Recovery
Raid RecoveryRaid Recovery
Raid Recovery
 
Class2
Class2Class2
Class2
 
Raid and its levels
Raid and its levelsRaid and its levels
Raid and its levels
 
Analysis process designer (apd) part 2
Analysis process designer (apd) part   2Analysis process designer (apd) part   2
Analysis process designer (apd) part 2
 
Raid
RaidRaid
Raid
 
AlphaBox Technology Overview
AlphaBox Technology OverviewAlphaBox Technology Overview
AlphaBox Technology Overview
 
Raid 5
Raid 5Raid 5
Raid 5
 
Divyanshu open stack presentation -osi-ppt
Divyanshu open stack presentation -osi-pptDivyanshu open stack presentation -osi-ppt
Divyanshu open stack presentation -osi-ppt
 
Divyanshu open stack presentation -osi-ppt
Divyanshu open stack presentation -osi-pptDivyanshu open stack presentation -osi-ppt
Divyanshu open stack presentation -osi-ppt
 

Recently uploaded

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Recently uploaded (20)

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

Nagendra Srivastava

  • 1. RAID Technology By Nagendra Srivastava
  • 2. CONTENT Introduction Techniques/methods  Mirroring  Striping  Parity  Advantages and Disadvantages  Uses  Conclusion
  • 3. What is RAID History > It first defined by David A. Patterson, Garth A. Gibson, and Randy Katz at the University of California, Berkeley in 1987 to describe a redundant array of inexpensive disks. > What is RAID - It is a technology that allowed computer users to achieve high levels of storage reliability from low-cost and RAID allows you to store the same data redundantly (in multiple paces) in a balanced any to improve overall performance.
  • 4. Benefits of RAID > Data loss can be very dangerous for an organization > RAID technology prevents data loss due to disk failure > RAID technology can be implemented in hardware or software > Servers make use of RAID technology
  • 5. Hardware vs. Software RAID > Software RAID • Software RAID: run on the server’s CPU • Directly dependent on server CPU performance and load • Occupies host system memory and CPU operation, degrading server performance > Hardware RAID • Hardware RAID: run on the RAID controller’s CPU • Does not occupy any host system memory. Is not operating system dependent • Host CPU can execute applications while the array adapter's processor simultaneously executes array functions: true hardware multi-tasking
  • 6. RAID • Redundant Arrays of Independent Drives • Benefits – Improved data availability – Improved I/O performance – Increased scalability • Levels supported by Array controllers – RAID 0 – Data striping – RAID 1 – Drive mirroring – RAID 4 – Data guarding – RAID 5 – Distributed data guarding – RAID 6/ADG - Advanced data guarding – RAID 0+ 1 – Mirroring and striping
  • 7. Single Drive and Drive Arrays Single Drive Drive Arrays
  • 8. Drive Array Features • Data striping across multiple drives • Multiple channels • Request processing Single Fixed Disk Drive Drive 1 Array 3 2 4 1 2 3 4 1234 Drive Array Organization
  • 9. Techniques/Methods Mirroring Parity 10101010 XOR 11111111 = 01010101 11111111 XOR 01010101 = 10101010 10101010 XOR 01010101 = 11111111
  • 11. RAID Level 0 — Data Striping File divided into chunks (or segments) and then written (striped) across multiple drives
  • 12. RAID 0  Uses striping  I/O performance gain  No Data redundancy  Not fault tolerant  Not considered “true” RAID
  • 13. Striping Factor 64KB Host Data Fixed Striping Factor Based on Drive Sizes
  • 14. RAID Level 1 — Drive Mirroring Data Written to Two or More Separate Mirrored Drives
  • 15. RAID 1 Uses mirroring Also known as duplexing Fault tolerant High Disk overhead Mirroring typically handled system software Simplest RAID design
  • 16. RAID Level 0+1 Disk 0 is mirrored to disk 2 and disk 1 is mirrored to disk 3. Then disk 0 is striped with disk 1 and disk 2 is striped to disk 3.
  • 18. RAID 0+1 RAID 1+0 requires an array with four or more physical disks. The disks are mirrored in pairs and data blocks are striped across the mirrored pairs  Advantages  Highest read and write performance  No loss of data as long as no failed disks are mirrored to any other failed disk  Disadvantages  Expensive and Low disk capacity
  • 19. RAID Level 4 — Data Guarding Data striped across multiple drives and then its parity sum is calculated and written to a dedicated parity drive
  • 20. RAID 4 Advantages: Disadvantages: Very high read rates Very slow write rates  Even small writes fill up  Multiple files read at parity write queue once Inefficient data recovery Uses: Even more Complex Web Servers, and Controller Design than other high read, low RAID 3 write situations
  • 21. RAID Level 5 — Distributed Data Guarding Data is striped across multiple drives and then its parity sum calculated and striped across multiple drives. Example of 64KB striped across five drives using 4KB chunks.
  • 22. RAID 5  RAID 5 uses a parity data formula to create fault tolerance.  In RAID 5 each block of data stripe contains parity data that is calculated for the other data blocks in that strip.  The blocks of parity data are distributed over the physical disks that make up the logical drive with each physical disk containing only one block of parity data  It is referred to as data guarding.  Advantages  High read performance  No loss of data if one physical disk fails  More usable disk capacity  Disadvantages  Relatively low write performance  Data loss occurs if a second disk fails before data from the first failed disk is rebuilt
  • 23. RAID ADG (Advanced Data Guarding) > RAID ADG is similar to RAID 5 except this RAID level writes 2 sets of parity stripped across all drives. > Protects against failure of ANY 2 drives in the array A B C P Q D E P Q F G P Q H I P Q J K L RAID ADG
  • 24. RAID ADG (Advanced Data Guarding) > P = f1(A, B, C) = RAID 5 Parity > Q = f2(A, B, C) = new ADG Parity A B C P Q D E P Q F G P Q H I P Q J K L RAID ADG
  • 25. RAID ADG (Advanced Data Guarding) > If 2 parity drives are selected, the system can sustain failure of ANY 2 drives. X X A B C P Q D E P Q F G P Q H I P Q J K L RAID ADG
  • 26. RAID ADG (Advanced Data Guarding) or RAID 6 RAID advanced data guarding sometimes referred to as RAID 6, is similar to RAID 5 in that parity data is generated and stored to protect against data loss caused by physical disk failure  Advantages  High read performance  High data availability  More usable disk capacity
  • 27. RAID 10 Combining RAID 0 and RAID 1 is often referred to as RAID 10 which offers higher performance than RAID 1 but at much higher cost  Uses multiple (mirrored) RAID 1 in a single array  Data striped across all mirrored sets  Very high fault tolerance  High performance rate
  • 28. RAID 10 Characterized by:  Each drive duplicated  High implementation cost
  • 29. Comparing RAID Levels RAID 0 RAID 1 RAID 5 RAID 10 Read High 2X High High Write High 1X Medium High Fault No Yes Yes Yes tolerance Disk High Low High Low utilization Key Data lost Use double the Lower throughput Very expensive, not problems when any disk disk space with disk failure scalable fails Key High I/O Very high I/O A good overall High reliability with advantages performance performance balance good performance
  • 30. On-Line Spare • Replacement for failed drive • Requires hardware fault tolerance • Background rebuild process • Four On-Line Spares maximum (Smart Array controller) Mirrored Mirrored Pair Pair Mirrored Pair On-Line On-Line Spare Spare Before During After Failure Failure Replacement
  • 31. Conclusion So what have we learned here? Well we have learned that RAID is not just a bug spray. RAID is a good solution for companies or individuals carving more transfer performance, redundancy and storage capacity in their data storage systems.