RAID 0 RAID 0 is the data stripping (striped technology). The data of the entire logical disk is distributed across multiple physical disks by a stripe (stripped), which can be read/written in parallel,
Provides the fastest speed, but no redundancy capability. Requires a minimum of two disks. With raid 0, we can obtain a larger capacity of a single logical disk and gain higher access speeds by simultaneously reading multiple disks.
RAID 0 The first consideration is the speed and capacity of the disk, ignoring the security, as long as one of the disks is a problem, the entire array of data will be out of warranty.
Q: RAID0 at least a few plates?
A: RAID0 requires a minimum of two hard drives to achieve.
RAID 1 RAID 1, also known as mirroring mode, is the redundancy of the data. During the entire mirroring process, only half of the disk capacity is valid (the other half of the disk capacity is used to hold the same data).
Compared to RAID 0, RAID 1 first considers security, which is half the capacity and the same speed.
Q: RAID1 at least a few plates?
A: RAID1 requires a minimum of two hard drives to achieve.
RAID 0+1 in order to be both fast and secure with RAID 10 (or RAID 0+1), RAID 10 can be simply understood as a RAID 0 array composed of multiple disks for mirroring.
Q: raid0+1 at least a few hard drives can be implemented.
A: raid0+1 requires at least 4 disks.
RAID 3 and RAID 5 RAID 3 and RAID 5 are all checksum modes. RAID 3 works by storing the checksum data with a disk. Because any data changes are to modify the corresponding data validation information,
The disk that holds the data has several and parallel work, and the disk that holds the checksum data is only one, which brings the bottleneck of verifying the data storage. RAID 5 works by checking the data generated by each disk into blocks,
It is stored in each disk that makes up the array, which alleviates the bottleneck problem when the data is stored, but the cost of dividing the data and controlling the storage is the speed.
Q: How many hard drives does RAID5 need? Why is the volume of a disk lost?
Answer: at least 3 bucks
RAID5 stores the data and the corresponding parity information on each disk that makes up the RAID5, and the parity information and the corresponding data are stored on separate disks,
The full data is stored on any N-1 block disk, meaning that there is space equivalent to a piece of disk capacity for storing parity information. So when a disk in RAID5 is damaged,
Data integrity is not affected, thus ensuring data security. When the damaged disk is replaced, the raid also automatically rebuilds the data on the disk with the remaining parity information to maintain the RAID5 's high reliability.
Q: RAID50 at least a few plates?
A: RAID50 requires a minimum of 6 hard drives to achieve
It has the common characteristics of RAID 5 and RAID 0. It consists of two sets of RAID 5 disks (minimum of 3 per group), each with distributed parity bits, and two sets of hard disks that are then assembled into RAID 0 to extract data across disks. RAID 50 provides reliable data storage and excellent overall performance, and supports larger volume sizes. Even if two physical disks fail (one in each array), the data can be recovered smoothly.
RAID 50 requires a minimum of 6 drives and is best suited for applications that require high reliability storage, high read speed, and high data transfer performance. These applications include transactional processing and Office applications that have many users accessing small files.
Q: RAID10 at least a few plates?
A: RAID10 requires a minimum of 4 hard drives to achieve
RAID10 means to make 2 hard drives into a RAID1, and then two groups of RAID1 make up a RAID0, which is RAID10, so it is a minimum of 4 hard drives.
This article is from the "Change Color" blog, please be sure to keep this source http://hcg1988.blog.51cto.com/3725305/1759025
How many hard drives are required to do various raid