I will be (finally) fixing tomorrow an issue I do have with my USB boot key (have already a backup, just preparing things) and will add more space to my system.
I do have a RAIDZ1 volume :
From what is shown on the documentation, the process is quite simple: shutdown the system, add the drives, go to the interface and add the drives from the volume manager.
I was planning to add two more disks, but from what it's shown on the documentation (http://doc.freenas.org/11/storage.html#extending-a-zfs-volume) I have a doubt that I would need to add an additional one, three instead of two:
Thanks!
I do have a RAIDZ1 volume :
Code:
[root@freenas ~]# zpool status pool: MainVolume state: ONLINE status: Some supported features are not enabled on the pool. The pool can still be used, but some features are unavailable. action: Enable all features using 'zpool upgrade'. Once this is done, the pool may no longer be accessible by software that does not support the features. See zpool-features(7) for details. scan: scrub repaired 0 in 22h12m with 0 errors on Thu Feb 1 22:12:33 2018 config: NAME STATE READ WRITE CKSUM MainVolume ONLINE 0 0 0 raidz1-0 ONLINE 0 0 0 gptid/7bca072a-6c38-11e4-9f61-e03f4986cfc1 ONLINE 0 0 0 gptid/7c97e50f-6c38-11e4-9f61-e03f4986cfc1 ONLINE 0 0 0 gptid/8e8cc095-5e71-11e6-aac5-e03f4986cfc1 ONLINE 0 0 0
From what is shown on the documentation, the process is quite simple: shutdown the system, add the drives, go to the interface and add the drives from the volume manager.
I was planning to add two more disks, but from what it's shown on the documentation (http://doc.freenas.org/11/storage.html#extending-a-zfs-volume) I have a doubt that I would need to add an additional one, three instead of two:
- to extend a ZFS stripe, add one or more disks. Since there is no redundancy, disks do not have to be added in the same quantity as the existing stripe.
- to extend a ZFS mirror, add the same number of drives. The resulting striped mirror is a RAID 10. For example, if ten new drives are available, a mirror of two drives could be created initially, then extended by creating another mirror of two drives, and repeating three more times until all ten drives have been added.
- to extend a three drive RAIDZ1, add three additional drives. The result is a RAIDZ+0, similar to RAID 50 on a hardware controller.
- to extend a RAIDZ2 requires a minimum of four additional drives. The result is a RAIDZ2+0, similar to RAID 60 on a hardware controller.
Thanks!