SlideShare une entreprise Scribd logo
1  sur  26
1
2
3
4
5
6
7
8
RAID LEVEL 0 Description
          RAID Level 0 is not, strictly speaking, a RAID array does not provide a mechanism for assuring high data
          availability. Disk striping.
          In traditional storage systems, a logical record or a block of data is entirely contained on a single disk
          drive. This causes the host application to "wait its turn."
          With RAID Level 0 a block of information or a logical record is broken down into smaller pieces and
          distributed across multiple disk drives. Utilizes an external controller and processor to control the array,
          additional performance improvements are achieved over using a host based "software array".
Operating During Failure
          Improved performance is the only enhancement delivered by RAID Level 0. There is no protection that
          provides for improved data availability. In fact, because data is striped across multiple drives, it is likely
          that the failure of one drive will live "holes" in the data rendering the entire array unusable. Additionally,
          the MTBF of the array declines as the number of drives increases. Therefore, RAID Level 0, by itself, is
          unsuitable for data that cannot easily be reproduced or for mission- critical applications requiring
          continual data availability.

Performance Characteristics
         The concurrent execution of I/O requests is the primary reason that RAID Level 0 can transfer data faster
         that a single disk. RAID Level 0 provides high performance for a wide variety of I/O intensive applications.
         When configured with all drives acting in unison, RAID Level O can provide high data transfer rates of
         large blocks of data. This makes Level 0 very useful for imaging applications, audio/video processing,
         sequential file processing, and the storage of program libraries. When configured as an Independent
         access array with all drives separately processing I/O requests, RAID Level 0 can provide faster response
         to frequent I/O requests. This makes it useful for transaction processing and general file services for
         multi-user systems.

           Using Scatter read and write gathering, the performance of applications that make large I/O requests is
           substantially improved. If the requested data is larger than one stripe, the array can cause the disk (s) to
           read/write adjacent stripes during the same I/O request rather than processing separate request for each
           stripe level. In the RAID Level 0 diagram on page 6 for example, if the application needs the first six blocks
           (i.e., 0123, 4567, 8901, 2345, 6789, 1234), an array supporting Scatter read would instruct Drive 1 to
           return 0123 and 6789, Drive 2 to return 4567 and 1234, Drive 3 to return 8901 and Drive 4 to return 7512.
           This uses 4 I/O requests instead of six. The same reduction in I/O requests occurs with write gathering
           since a write updates multiple adjacent stripes with a single I/O request.




                                                                                                                            9
10
11
RAID Level 1 Disk Mirroring Description
        RAID Level 1, or disk mirroring, stores images of the data on each disk drive.

         I/O requests are processed differently depending on whether they are read or write
         requests. For read requests, the array has the ability to make a choice as to which
         disk to read from. This can be done either on a random basis or on an alternating
         basis resulting in load sharing.

         During a write operation, both drives in a pair must be updated. A single write
         request for the host is translated into a write for each drive in the pair.

Operating During Failure
        If either disk in the pair fails, the remaining disk can carry on with its normal activities
        without any downtime. The reconstruction is usually transparent to the host system.
        However, performing the reconstruction does entail overhead especially while
        continuing to provide normal I/O operations.

Performance Characteristics
       RAID Level 1provides improved read performances compared to traditional disk
       subsystems due to Parallel I/O paths.




                                                                                                       12
13
14
15
RAID Level 3 uses parity information to create data redundancy. Data is distributed across all the disks
in such a way that the data can be mathematically reconstructed.
Data is striped across the data disks using bit or byte striping so a logical record or block spans across
multiple drives. The drives in the array are accessed in parallel: when information is read, it is gathered
simultaneously from all the data drives, reassembled into a logical block then passed to the host. A
separate disk is used to store parity information about the disk drives.
Operating During Failure
           A disk failure may be one of the data disks or the parity disk. In either case, however, the
           ability to read or write data is not impaired.

          If one of the data disks fails during a read operation, information on the parity disk is
          combined with the data from the remaining drives to mathematically determine what the
          missing data should be. During a write with a failed data disk, the data is written to the
          remaining drives. When the failed disk is replaced, all the data that should be on it is rebuilt
          using the information from the other data drives combined with the parity values.

        If the parity disk fails, information is retrieved from the data disks as usual.
Performance Characteristics
        Provides excellent I/O performance for applications in which large blocks of sequentially
        located data are being used, such as image/audio/ video processing, and scientific data
        collection.
        The drives are operation in unison and are "tied up" fulfilling an I/O request.
        In a failed data disk mode, regardless of which data disk has failed, every request for data will
        require regeneration of the missing data because the block being requested spans multiple
        drives.
        Rebuilding the data on a replace data or parity disk involves repeated access to all drives in the
        array.




                                                                                                              16
17
18
RAID Level 5 Distributed Parity Independent Access Arrays Description
          Also uses parity information to provide data redundancy. However, data is striped across drives using
          larger, multi-byte units (unlike RAID Level 3). RAID Level 5 arrays can process multiple requests
          simultaneously as long as the data being requested is located on different drives.
          Parity information itself is distributed across all drives just like user data.
          When a read operation takes place, the array management software determines which stripe(s) in which
          drives(s) will be required and then issues the request to the appropriate drive (s).
          During a write operation, the array calculates the parity and issues commands to write the new data to
          the appropriate drive(s).
          When a write occurs in a RAID Level 3 array, the completely updated stripe is written to all drives within
          the stripe. The newly calculated parity is written to the parity drive at the same time. In a RAID Level 5
          array, a record update may only involve data on one of the drives. The others drives do not need to be
          involved and should be free to process other requests. However, in order to calculate the parity of the
          entire stripe, the array needs to know the contents of the entire stripe.
Operation During Failure
          When writing entails updating the parity on a failed disk, information is written to the other disk(s) as
          normal but parity information cannot be stored. When the failed disk is replaced, it must be brought up
          to date.
          When attempting a read operation that involves a failed disk, information from its corresponding parity
          (stored on a different disk) is combined with data from the remaining drives to mathematically determine
          what the missing data should be. During a write to an array with a failed data disk, if the write request
          only involves still-functioning drives, the read-modify-write operation takes place as normal: there is no
          need to involve the failed drive.
          If the write request includes storing data on a failed drive, the data of course, cannot be written to it.
          However, the parity value necessary to allow reconstruction of the data can be written because the parity
          will be stored on one of the other drives that is still functioning.
Performance Characteristics
          Well suited for applications involving a large number of concurrent read request where high data access
          rates are desirable and there is a higher proportion of reads compared to writes.
          Cache memory and other data management techniques are designed to minimize the write penalty.
          When a read or write is requested to a failed disk, all drives must be accessed to gather the remaining
          data and parity in order to calculate the missing information.




                                                                                                                       19
20
21
RAID Level 0+1 Striped Mirrored Arrays Description
        RAID Level 0+1, also known as RAID 10, combines the data availability advantages of
        RAID Level 1 disk mirroring with the performance benefits of RAID Level O disk
        striping in a single array.
        A logical record or block is broken down into smaller pieces. Each piece is distributed
        across different disk drives (like RAID Level 0) and each of these disk drives has a
        mirrored twin (like RAID Level 1).
        With load balanced striping, the Customer file is distributed across multiple drives.
        The RAID Level 0+1 array also provides high performance for application that need
        high data transfer rates (i.e. read/write request or large blocks of data).
        This architecture is very reliable since a duplicate copy of all data is available even in
        the highly unlikely event of a simultaneous failure of more than one disk.
Operating During Failure
        If either disk in the pair fails, the remaining disk can carry on with its read and write
        activity without any downtime. The array hardware and software ensure that the
        switch-over ensure that the switch over to the "backup' drive is transparent to the
        host. Performance Characteristics
        The high I/O performance of RAID Level 0+1 arrays comes from two levels of load
        balancing:
                  Distributing the data across multiple drives.
                  Provides a secondary level of load balancing by sending the request to the
                  least busy disk to complete the request more quickly.
        Provides high performance for a variety of I/O-intensive applications.




                                                                                                     22
23
24
25
26

Contenu connexe

Tendances (20)

RAID
RAIDRAID
RAID
 
RAID LEVELS
RAID LEVELSRAID LEVELS
RAID LEVELS
 
RAID and Storage Arrays
RAID and Storage ArraysRAID and Storage Arrays
RAID and Storage Arrays
 
Raid
RaidRaid
Raid
 
Present of Raid and Its Type
Present of Raid and Its TypePresent of Raid and Its Type
Present of Raid and Its Type
 
SEMINAR
SEMINARSEMINAR
SEMINAR
 
Raid_intro.ppt
Raid_intro.pptRaid_intro.ppt
Raid_intro.ppt
 
Raid Levels
Raid LevelsRaid Levels
Raid Levels
 
Raid (Redundant Array of Inexpensive Disks) in Computer Architecture
Raid (Redundant Array of Inexpensive Disks) in Computer ArchitectureRaid (Redundant Array of Inexpensive Disks) in Computer Architecture
Raid (Redundant Array of Inexpensive Disks) in Computer Architecture
 
RAID Review
RAID ReviewRAID Review
RAID Review
 
Raid levels
Raid levelsRaid levels
Raid levels
 
RAID CONCEPT
RAID CONCEPTRAID CONCEPT
RAID CONCEPT
 
Raid Level
Raid LevelRaid Level
Raid Level
 
Raid and its levels
Raid and its levelsRaid and its levels
Raid and its levels
 
Performance evolution of raid
Performance evolution of raidPerformance evolution of raid
Performance evolution of raid
 
RAID
RAIDRAID
RAID
 
RAID seminar
RAID seminarRAID seminar
RAID seminar
 
Raid : Redundant Array of Inexpensive Disks
Raid : Redundant Array of Inexpensive DisksRaid : Redundant Array of Inexpensive Disks
Raid : Redundant Array of Inexpensive Disks
 
Raid
RaidRaid
Raid
 
Raid 5
Raid 5Raid 5
Raid 5
 

En vedette

Vdaypresent2011
Vdaypresent2011Vdaypresent2011
Vdaypresent2011gabrol99
 
Formulário roteiro de aula 0
Formulário roteiro de aula 0Formulário roteiro de aula 0
Formulário roteiro de aula 0Carlos Melo
 
Plano de estudo manutenção de redes de computadores
Plano de estudo   manutenção de redes de computadoresPlano de estudo   manutenção de redes de computadores
Plano de estudo manutenção de redes de computadoresCarlos Melo
 

En vedette (8)

Dhcp
DhcpDhcp
Dhcp
 
Dhcp
DhcpDhcp
Dhcp
 
Vdaypresent2011
Vdaypresent2011Vdaypresent2011
Vdaypresent2011
 
Saptamana dragostei
Saptamana dragosteiSaptamana dragostei
Saptamana dragostei
 
SEO
SEOSEO
SEO
 
Formulário roteiro de aula 0
Formulário roteiro de aula 0Formulário roteiro de aula 0
Formulário roteiro de aula 0
 
Plano de estudo manutenção de redes de computadores
Plano de estudo   manutenção de redes de computadoresPlano de estudo   manutenção de redes de computadores
Plano de estudo manutenção de redes de computadores
 
Software testing
Software testingSoftware testing
Software testing
 

Similaire à Sistemas operacionais raid

Various raid levels pros & cons
Various raid levels pros & consVarious raid levels pros & cons
Various raid levels pros & consIT Tech
 
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 virtualizationMadhuraNK
 
Chapter 8 - Multimedia Storage and Retrieval
Chapter 8 - Multimedia Storage and RetrievalChapter 8 - Multimedia Storage and Retrieval
Chapter 8 - Multimedia Storage and RetrievalPratik Pradhan
 
Raid the redundant array of independent disks technology overview
Raid the redundant array of independent disks technology overviewRaid the redundant array of independent disks technology overview
Raid the redundant array of independent disks technology overviewIT Tech
 
Exercise 3-1 This chapter’s opening scenario illustrates a specific .docx
Exercise 3-1 This chapter’s opening scenario illustrates a specific .docxExercise 3-1 This chapter’s opening scenario illustrates a specific .docx
Exercise 3-1 This chapter’s opening scenario illustrates a specific .docxnealwaters20034
 
Dr module 3 assignment Management homework help.docx
Dr module 3 assignment Management homework help.docxDr module 3 assignment Management homework help.docx
Dr module 3 assignment Management homework help.docxwrite31
 
112667416 raid-seminar
112667416 raid-seminar112667416 raid-seminar
112667416 raid-seminarabhivicram
 
Raid Levels Technology
Raid Levels TechnologyRaid Levels Technology
Raid Levels TechnologyIshwor Panta
 

Similaire à Sistemas operacionais raid (20)

RAID
RAIDRAID
RAID
 
Various raid levels pros & cons
Various raid levels pros & consVarious raid levels pros & cons
Various raid levels pros & cons
 
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
 
Database 3
Database 3Database 3
Database 3
 
Chapter 8 - Multimedia Storage and Retrieval
Chapter 8 - Multimedia Storage and RetrievalChapter 8 - Multimedia Storage and Retrieval
Chapter 8 - Multimedia Storage and Retrieval
 
Raid
RaidRaid
Raid
 
Raid the redundant array of independent disks technology overview
Raid the redundant array of independent disks technology overviewRaid the redundant array of independent disks technology overview
Raid the redundant array of independent disks technology overview
 
RAID-CONFIGURATION (2023).pptx
RAID-CONFIGURATION (2023).pptxRAID-CONFIGURATION (2023).pptx
RAID-CONFIGURATION (2023).pptx
 
Raid(Storage Technology)
Raid(Storage Technology)Raid(Storage Technology)
Raid(Storage Technology)
 
Raid level
Raid levelRaid level
Raid level
 
Understanding RAID Controller
Understanding RAID ControllerUnderstanding RAID Controller
Understanding RAID Controller
 
Exercise 3-1 This chapter’s opening scenario illustrates a specific .docx
Exercise 3-1 This chapter’s opening scenario illustrates a specific .docxExercise 3-1 This chapter’s opening scenario illustrates a specific .docx
Exercise 3-1 This chapter’s opening scenario illustrates a specific .docx
 
Dr module 3 assignment Management homework help.docx
Dr module 3 assignment Management homework help.docxDr module 3 assignment Management homework help.docx
Dr module 3 assignment Management homework help.docx
 
Raid in SNA
Raid in SNA Raid in SNA
Raid in SNA
 
Class2
Class2Class2
Class2
 
112667416 raid-seminar
112667416 raid-seminar112667416 raid-seminar
112667416 raid-seminar
 
UNIT III.pptx
UNIT III.pptxUNIT III.pptx
UNIT III.pptx
 
Raid Levels Technology
Raid Levels TechnologyRaid Levels Technology
Raid Levels Technology
 
RAID-Presentation
RAID-PresentationRAID-Presentation
RAID-Presentation
 
Linux admin
Linux adminLinux admin
Linux admin
 

Plus de Carlos Melo

Gestão de projetos introduçao
Gestão de projetos introduçaoGestão de projetos introduçao
Gestão de projetos introduçaoCarlos Melo
 
Roteiro da aula prática de sexta à tarde
Roteiro da aula prática de sexta à tardeRoteiro da aula prática de sexta à tarde
Roteiro da aula prática de sexta à tardeCarlos Melo
 
5a.aulacapacitor
5a.aulacapacitor5a.aulacapacitor
5a.aulacapacitorCarlos Melo
 
Atividade final acionamentos
Atividade final   acionamentosAtividade final   acionamentos
Atividade final acionamentosCarlos Melo
 
Questões clp-automação
Questões clp-automaçãoQuestões clp-automação
Questões clp-automaçãoCarlos Melo
 
Apresentação12
Apresentação12Apresentação12
Apresentação12Carlos Melo
 
Gestão da manutenção os 2
Gestão da manutenção os 2Gestão da manutenção os 2
Gestão da manutenção os 2Carlos Melo
 
Gestão da manutenção os 1
Gestão da manutenção os 1Gestão da manutenção os 1
Gestão da manutenção os 1Carlos Melo
 
Desenho técnico cap1
Desenho técnico   cap1Desenho técnico   cap1
Desenho técnico cap1Carlos Melo
 
Eletrônica básica
Eletrônica básicaEletrônica básica
Eletrônica básicaCarlos Melo
 
Analise de circuito indutores
Analise de circuito   indutoresAnalise de circuito   indutores
Analise de circuito indutoresCarlos Melo
 
Notas ete jags - destec
Notas ete   jags - destecNotas ete   jags - destec
Notas ete jags - destecCarlos Melo
 
Ucr3 fundamentos mecanica_sa1_suporte dosador_1_22_mai12
Ucr3 fundamentos mecanica_sa1_suporte dosador_1_22_mai12Ucr3 fundamentos mecanica_sa1_suporte dosador_1_22_mai12
Ucr3 fundamentos mecanica_sa1_suporte dosador_1_22_mai12Carlos Melo
 
Recuperação descrição
Recuperação   descriçãoRecuperação   descrição
Recuperação descriçãoCarlos Melo
 
Ete projetos elétricos 2
Ete projetos elétricos 2Ete projetos elétricos 2
Ete projetos elétricos 2Carlos Melo
 

Plus de Carlos Melo (20)

Treinamento 1
Treinamento 1Treinamento 1
Treinamento 1
 
Zener
ZenerZener
Zener
 
Gestão de projetos introduçao
Gestão de projetos introduçaoGestão de projetos introduçao
Gestão de projetos introduçao
 
Capacitancia
CapacitanciaCapacitancia
Capacitancia
 
Roteiro da aula prática de sexta à tarde
Roteiro da aula prática de sexta à tardeRoteiro da aula prática de sexta à tarde
Roteiro da aula prática de sexta à tarde
 
5a.aulacapacitor
5a.aulacapacitor5a.aulacapacitor
5a.aulacapacitor
 
Atividade final acionamentos
Atividade final   acionamentosAtividade final   acionamentos
Atividade final acionamentos
 
Questões clp-automação
Questões clp-automaçãoQuestões clp-automação
Questões clp-automação
 
Apresentação12
Apresentação12Apresentação12
Apresentação12
 
Pneumática
PneumáticaPneumática
Pneumática
 
Gestão da manutenção os 2
Gestão da manutenção os 2Gestão da manutenção os 2
Gestão da manutenção os 2
 
Gestão da manutenção os 1
Gestão da manutenção os 1Gestão da manutenção os 1
Gestão da manutenção os 1
 
Desenho técnico cap1
Desenho técnico   cap1Desenho técnico   cap1
Desenho técnico cap1
 
Eletrônica básica
Eletrônica básicaEletrônica básica
Eletrônica básica
 
Analise de circuito indutores
Analise de circuito   indutoresAnalise de circuito   indutores
Analise de circuito indutores
 
Notas ete jags - destec
Notas ete   jags - destecNotas ete   jags - destec
Notas ete jags - destec
 
Ucr3 fundamentos mecanica_sa1_suporte dosador_1_22_mai12
Ucr3 fundamentos mecanica_sa1_suporte dosador_1_22_mai12Ucr3 fundamentos mecanica_sa1_suporte dosador_1_22_mai12
Ucr3 fundamentos mecanica_sa1_suporte dosador_1_22_mai12
 
Recuperação descrição
Recuperação   descriçãoRecuperação   descrição
Recuperação descrição
 
Recuperação 1
Recuperação 1Recuperação 1
Recuperação 1
 
Ete projetos elétricos 2
Ete projetos elétricos 2Ete projetos elétricos 2
Ete projetos elétricos 2
 

Dernier

Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 

Dernier (20)

Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 

Sistemas operacionais raid

  • 1. 1
  • 2. 2
  • 3. 3
  • 4. 4
  • 5. 5
  • 6. 6
  • 7. 7
  • 8. 8
  • 9. RAID LEVEL 0 Description RAID Level 0 is not, strictly speaking, a RAID array does not provide a mechanism for assuring high data availability. Disk striping. In traditional storage systems, a logical record or a block of data is entirely contained on a single disk drive. This causes the host application to "wait its turn." With RAID Level 0 a block of information or a logical record is broken down into smaller pieces and distributed across multiple disk drives. Utilizes an external controller and processor to control the array, additional performance improvements are achieved over using a host based "software array". Operating During Failure Improved performance is the only enhancement delivered by RAID Level 0. There is no protection that provides for improved data availability. In fact, because data is striped across multiple drives, it is likely that the failure of one drive will live "holes" in the data rendering the entire array unusable. Additionally, the MTBF of the array declines as the number of drives increases. Therefore, RAID Level 0, by itself, is unsuitable for data that cannot easily be reproduced or for mission- critical applications requiring continual data availability. Performance Characteristics The concurrent execution of I/O requests is the primary reason that RAID Level 0 can transfer data faster that a single disk. RAID Level 0 provides high performance for a wide variety of I/O intensive applications. When configured with all drives acting in unison, RAID Level O can provide high data transfer rates of large blocks of data. This makes Level 0 very useful for imaging applications, audio/video processing, sequential file processing, and the storage of program libraries. When configured as an Independent access array with all drives separately processing I/O requests, RAID Level 0 can provide faster response to frequent I/O requests. This makes it useful for transaction processing and general file services for multi-user systems. Using Scatter read and write gathering, the performance of applications that make large I/O requests is substantially improved. If the requested data is larger than one stripe, the array can cause the disk (s) to read/write adjacent stripes during the same I/O request rather than processing separate request for each stripe level. In the RAID Level 0 diagram on page 6 for example, if the application needs the first six blocks (i.e., 0123, 4567, 8901, 2345, 6789, 1234), an array supporting Scatter read would instruct Drive 1 to return 0123 and 6789, Drive 2 to return 4567 and 1234, Drive 3 to return 8901 and Drive 4 to return 7512. This uses 4 I/O requests instead of six. The same reduction in I/O requests occurs with write gathering since a write updates multiple adjacent stripes with a single I/O request. 9
  • 10. 10
  • 11. 11
  • 12. RAID Level 1 Disk Mirroring Description RAID Level 1, or disk mirroring, stores images of the data on each disk drive. I/O requests are processed differently depending on whether they are read or write requests. For read requests, the array has the ability to make a choice as to which disk to read from. This can be done either on a random basis or on an alternating basis resulting in load sharing. During a write operation, both drives in a pair must be updated. A single write request for the host is translated into a write for each drive in the pair. Operating During Failure If either disk in the pair fails, the remaining disk can carry on with its normal activities without any downtime. The reconstruction is usually transparent to the host system. However, performing the reconstruction does entail overhead especially while continuing to provide normal I/O operations. Performance Characteristics RAID Level 1provides improved read performances compared to traditional disk subsystems due to Parallel I/O paths. 12
  • 13. 13
  • 14. 14
  • 15. 15
  • 16. RAID Level 3 uses parity information to create data redundancy. Data is distributed across all the disks in such a way that the data can be mathematically reconstructed. Data is striped across the data disks using bit or byte striping so a logical record or block spans across multiple drives. The drives in the array are accessed in parallel: when information is read, it is gathered simultaneously from all the data drives, reassembled into a logical block then passed to the host. A separate disk is used to store parity information about the disk drives. Operating During Failure A disk failure may be one of the data disks or the parity disk. In either case, however, the ability to read or write data is not impaired. If one of the data disks fails during a read operation, information on the parity disk is combined with the data from the remaining drives to mathematically determine what the missing data should be. During a write with a failed data disk, the data is written to the remaining drives. When the failed disk is replaced, all the data that should be on it is rebuilt using the information from the other data drives combined with the parity values. If the parity disk fails, information is retrieved from the data disks as usual. Performance Characteristics Provides excellent I/O performance for applications in which large blocks of sequentially located data are being used, such as image/audio/ video processing, and scientific data collection. The drives are operation in unison and are "tied up" fulfilling an I/O request. In a failed data disk mode, regardless of which data disk has failed, every request for data will require regeneration of the missing data because the block being requested spans multiple drives. Rebuilding the data on a replace data or parity disk involves repeated access to all drives in the array. 16
  • 17. 17
  • 18. 18
  • 19. RAID Level 5 Distributed Parity Independent Access Arrays Description Also uses parity information to provide data redundancy. However, data is striped across drives using larger, multi-byte units (unlike RAID Level 3). RAID Level 5 arrays can process multiple requests simultaneously as long as the data being requested is located on different drives. Parity information itself is distributed across all drives just like user data. When a read operation takes place, the array management software determines which stripe(s) in which drives(s) will be required and then issues the request to the appropriate drive (s). During a write operation, the array calculates the parity and issues commands to write the new data to the appropriate drive(s). When a write occurs in a RAID Level 3 array, the completely updated stripe is written to all drives within the stripe. The newly calculated parity is written to the parity drive at the same time. In a RAID Level 5 array, a record update may only involve data on one of the drives. The others drives do not need to be involved and should be free to process other requests. However, in order to calculate the parity of the entire stripe, the array needs to know the contents of the entire stripe. Operation During Failure When writing entails updating the parity on a failed disk, information is written to the other disk(s) as normal but parity information cannot be stored. When the failed disk is replaced, it must be brought up to date. When attempting a read operation that involves a failed disk, information from its corresponding parity (stored on a different disk) is combined with data from the remaining drives to mathematically determine what the missing data should be. During a write to an array with a failed data disk, if the write request only involves still-functioning drives, the read-modify-write operation takes place as normal: there is no need to involve the failed drive. If the write request includes storing data on a failed drive, the data of course, cannot be written to it. However, the parity value necessary to allow reconstruction of the data can be written because the parity will be stored on one of the other drives that is still functioning. Performance Characteristics Well suited for applications involving a large number of concurrent read request where high data access rates are desirable and there is a higher proportion of reads compared to writes. Cache memory and other data management techniques are designed to minimize the write penalty. When a read or write is requested to a failed disk, all drives must be accessed to gather the remaining data and parity in order to calculate the missing information. 19
  • 20. 20
  • 21. 21
  • 22. RAID Level 0+1 Striped Mirrored Arrays Description RAID Level 0+1, also known as RAID 10, combines the data availability advantages of RAID Level 1 disk mirroring with the performance benefits of RAID Level O disk striping in a single array. A logical record or block is broken down into smaller pieces. Each piece is distributed across different disk drives (like RAID Level 0) and each of these disk drives has a mirrored twin (like RAID Level 1). With load balanced striping, the Customer file is distributed across multiple drives. The RAID Level 0+1 array also provides high performance for application that need high data transfer rates (i.e. read/write request or large blocks of data). This architecture is very reliable since a duplicate copy of all data is available even in the highly unlikely event of a simultaneous failure of more than one disk. Operating During Failure If either disk in the pair fails, the remaining disk can carry on with its read and write activity without any downtime. The array hardware and software ensure that the switch-over ensure that the switch over to the "backup' drive is transparent to the host. Performance Characteristics The high I/O performance of RAID Level 0+1 arrays comes from two levels of load balancing: Distributing the data across multiple drives. Provides a secondary level of load balancing by sending the request to the least busy disk to complete the request more quickly. Provides high performance for a variety of I/O-intensive applications. 22
  • 23. 23
  • 24. 24
  • 25. 25
  • 26. 26