My Retain Tip/X Series

RAID LEVEL, 레이드란? 서버 레이드레벨 정리 장단점

엔지니어-FIXER 2013. 5. 14. 01:30

RAID는 디스크를 묶어서 성능과 안정성을 높이는 기술입니다

 

예를 들어 2개의 디스크를 하나의 디스크처럼 묶어서 사용하는걸 말합니다

물론 2개이상의 하드디스크를 묶을수도 있습니다

이게 바로 RAID라는것이고 요즘 일반 컴퓨터에도 지원됩니다

 

HDD 와 SSD 모두 RAID가 가능하며

될수 있으면 같은 용량 같은 종류를 사용하는게 좋겠습니다

다른 용량 다른 디스크도 가능은 합니다

 

기본적인 RAID LEVEL

 

RAID 0

 

2개이상의 디스크를 하나의 디스크처럼 묶어서 사용

 

장점 : 빠름, 용량 모두 사용

단점 : 하나의 디스크만 고장나도 데이터 모두 손실

 

 

RAID 1

 

 

2개의 디스크를 묶어서 1/2 개의 디스크로 사용

 

장점 : 안정성 확보 하나의 디스크가 고장나도 잘됨

단점 : 용량을 모두 사용못함 1개의 디스크 용량만 사용가능

 

RAID 5

3개 이상의 디스크를 묶어서 사용 n-1 개의 디스크 용량사용

 

장점 : 하나의 디스크가 고장나도 동작가능, 빠름 ,보편적

단점 : 1개의 디스크용량을 사용못함

 

 

 

RAID 0 uses striping to provide high data throughput, especially for large
files in an environment that does not require fault tolerance.

 


RAID 1 uses mirroring so that data written to one drive is simultaneously
written to another drive. This is good for small databases or other
applications that require small capacity but complete data redundancy.

 


RAID 5 uses disk striping and parity data across all drives (distributed
parity) to provide high data throughput, especially for small random
access.