RAID / выбор FS для 12 машин жесткого диска?

Я отправил этот вопрос в нескольких различных местах, ища ответ. Я наконец нашел его на сайте StackExchange Unix & Linux.

Я надеюсь, что это помогает кому-то еще там.

0
задан 27 September 2013 в 13:36
2 ответа

The best option for data security is ZFS data encryption, ans for no corruption Best data reliability is provided by ZFS as well. ZFS has its own RAID (which is software RAID), that can help you a lot in this case to build RAID/Mirror or many types, based on your needs. you can even have Spare drives to be added in a ZFS RAID , as just in case one drive fails, it is automatically replaced with spare drive. Also, in case of ZFS, RAID re-construction is fastest, as it does not re-calculate every block on drive, but intelligently only recovers the data that needs to be reconstructed. Also, in case of ZFS, RAID is much more reliable as it provides some sort of Raid5/6 (named as RaidZ/Raidz2/RaidZ3) parity does not needs to be calculated again and again (as its done in traditional RAID5/6...

For Extreme performance, just use ZFS cachings over a 100-400GB SSD Drive (based on your needs), so all of your reads/writes can be cached and you can get IOPS of more than 10,000+ (if tuned properly) as compared to 14 drive RAID, which can give you 14x read speed (appx 1500-2000 IOPS)...

Dont go for btrfs, as its slowest filesystem.

3
ответ дан 4 December 2019 в 11:51
  1. data security, no loss, no corruption (most important)

Start with your backup plan. All the raid-like technologies you mention will reduce downtime when you lose a disk, but they can't replace backups.

Short-lived snapshots (LVM, Btrfs, ZFS) give you a consistent state to back up from. zfs send (zfs->zfs), btrfs send (btrfs->btrfs), and dump (ext->any) are useful to send changes incrementally; rsync is a more portable but less efficient alternative.

1
ответ дан 4 December 2019 в 11:51

Теги

Похожие вопросы