반응형
- RAID
- RAID란?
더보기RAID란?
- 복수 배열 독립 디스크(Redundant Array of Independent Disks 혹은 Redundant Array of Inexpensive Disks)
- 디스크 어레이(disk array)
- 저장장치 여러 개를 묶어 고용량, 고성능인 저장 장치 한 개와 같은 효과를 얻기 위해 개발된 기법
- 여러 개의 하드 디스크에 일부 중복된 데이터를 나눠서 저장하는 기술이다.
데이터를 나누는 다양한 방법이 존재하며, 이 방법들을 레벨이라 하는데, 레벨에 따라 저장장치의 신뢰성을 높이거나 전체적인 성능을 향상시키는 등의 다양한 목적을 만족시킬 수 있다. - RAID는 여러 개의 디스크를 하나로 묶어 하나의 논리적 디스크로 작동하게 하는데, 하드웨어적인 방법과 소프트웨어적인 방법이 있다.
- 하드웨어적인 방법은 운영 체제에 이 디스크가 하나의 디스크처럼 보이게 한다.
- 소프트웨어적인 방법은 주로 운영체제 안에서 구현되며, 사용자에게 디스크를 하나의 디스크처럼 보이게 한다.
- Primary RAID Levels 표 출처 : Common RAID Disk Data Format Specification Version 2.0 Revision 19 - SNIA Technical Position
- Primary RAID Levels 표 (PRL)
-
NAME PRL Byte Description RAID-0 0x00 Striped array with no parity RAID-1 0x01 Mirrored array RAID-3 0x03 Striped array with non-rotating parity, optimized for long, singlethreaded transfers RAID-4 0x04 Striped array with non-rotating parity, optimized for short, multithreaded transfers RAID-5 0x05 Striped array with rotating parity, optimized for short, multi-threaded transfers RAID-6 0x06 Similar to RAID-5, but with dual rotating parity physical disks, tolerating two physical disk failures MDF RAID 0x07 Multi disk Failure RAID. Similar to RAID-6, but supporting more than two physical disk failures RAID-1E 0x11 >2 disk RAID-1, similar to RAID-10 but with striping integrated into array Single Disk 0x0F Single, non-arrayed disk Concatenation 0x1F Physical disks combined head to tail RAID-5E 0x15 RAID-5 with hot space at end each extent RAID-5EE 0x25 RAID-5 with hot space integrated into each extent RAID-5R 0x35 RAID-5 with parity rotated after a configured number of stripes -
Level Name PRL Byte Description RAID-0 0x00 패리티가 없는 스트리핑하여 저장 (번갈아가면서 저장) RAID-1 0x01 데이터 복사 (미러링) RAID-3 0x03 Striped array with non-rotating parity, optimized for long, singlethreaded transfers RAID-4 0x04 Striped array with non-rotating parity, optimized for short, multithreaded transfers RAID-5 0x05 Striped array with rotating parity, optimized for short, multi-threaded transfers RAID-6 0x06 Similar to RAID-5, but with dual rotating parity physical disks, tolerating two physical disk failures MDF RAID 0x07 Multi disk Failure RAID. Similar to RAID-6, but supporting more than two physical disk failures RAID-1E 0x11 >2 disk RAID-1, similar to RAID-10 but with striping integrated into array Single Disk 0x0F Single, non-arrayed disk Concatenation 0x1F Physical disks combined head to tail RAID-5E 0x15 RAID-5 with hot space at end each extent RAID-5EE 0x25 RAID-5 with hot space integrated into each extent RAID-5R 0x35 RAID-5 with parity rotated after a configured number of stripes - 이미지 출처 : https://en.wikipedia.org/wiki/Standard_RAID_levels
- RAID 0
- 패리티(오류 검출 기능)가 없는 스트리핑된 세트 (최소 2개의 디스크)
- Striping (스트라이핑) 이라고도 부름
- RAID 참고 사이트
- RAID란?
결정적 함수 와 비결정적 함수
반응형
'DB(SQL) > 기타' 카테고리의 다른 글
[DB] 공부해야할것들 (0) | 2021.05.21 |
---|---|
[DTC] 분산 트랜잭션 (Distributed Transaction Coordinator) (0) | 2021.05.21 |
DATABASE 네이밍 룰 참조 자료 (0) | 2021.02.26 |
ERD 작성 무료 사이트 (0) | 2021.02.12 |
Sequelize 참고 사이트 (0) | 2020.02.19 |