FreeBSD & ZFS

I have two 1 TB HDD available. What is the best configuration setup I can choose in the FreeBSD 10 installer for the experimental ZFS partitioning...stripe, mirror, or raidz1 (and what are the differences)?
 
Stripe = spread the data over 2 disk without any redundancy. If 1 disk fails, all data is toast.
Mirror = write the same data on each disk. If 1 disk fails, your data can still be read from the second disk.
Raidz1 = write the data to 1 disk and a checksum block to the second disk. If 1 disk fails, the data can be recovered from the second disk. For 2 disks, this doesn't really make sense, since a mirror would be better and faster.

I would suggest you try using a mirror, but this will reduce total capacity by 50%.
 
Back
Top