ASUSTOR FS6712XNAS: Possible JBOD vs RAID10 Time Settings
When looking to buy an ASUSTOR FS6712XNAS with a 12TB NVMe SSD, one of the important considerations is the RAID settings. This article will explore the possible RAID settings, specifically focusing on JBOD and RAID10, and the time settings associated with each configuration.
JBOD (Just a Bunch Of Disks)
JBOD is a simple disk management configuration that allows users to combine multiple hard drives into a single storage pool without any data protection. Each disk in the JBOD array is seen as an RAID0 volume and can be managed independently.
# Example of JBOD configuration
sudo mdadm --create /dev/md0 --level=0 --raid-devices=2 /dev/sda /dev/sdb
RAID10
RAID10, also known as RAID 1+0, is a more complex configuration that combines the advantages of RAID0 and RAID1. RAID10 provides data protection through mirroring and striping. The downside is that it requires at least four disks and reduces the overall storage capacity by 50%.
# Example of RAID10 configuration
sudo mdadm --create /dev/md0 --level=10 --raid-devices=4 /dev/sda /dev/sdb /dev/sdc /dev/sdd
Time Settings
The time settings for JBOD and RAID10 will depend on the number of disks, the size of the disks, and the RAID level. In general, RAID10 will take longer to set up than JBOD due to the additional data protection measures. However, the actual time difference may not be significant.
When configuring RAID10, it is important to consider the write performance impact. Write performance in RAID10 is slower than in JBOD because data must be written to multiple disks simultaneously. However, read performance is faster in RAID10 due to the striping of data across multiple disks.
When considering the RAID settings for an ASUSTOR FS6712XNAS with a 12TB NVMe SSD, both JBOD and RAID10 have their advantages and disadvantages. JBOD is a simple configuration that allows for independent management of each disk, while RAID10 provides data protection through mirroring and striping. The time settings for each configuration will depend on the number of disks, the size of the disks, and the RAID level.
References
- ASUSTOR FS6712XNAS Product Page: https://www.asustor.com/en/product/FS6712XNAS
- RAID Levels Explained: https://www.starwindsoftware.com/blog/raid-levels-explained-simple-guide
- MDADM Man Page: https://man7.org/linux/man-pages/man8/mdadm.8.html