Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ABeware that if you create a pool of 512-byte sector disks (i.e. without sectorsize override) then that pool CANNOT be expanded with real "native" 4K sector disks coming in the future. If you do the sectorsize override now, you can add native 4K sector disks later. Just one more thing to consider. ;-)
Depends on whether they're 4k drives or not. For advance-format drives, you want 128 divided by the drive count to come out as a full number. So 128 / 4 = 32, which would be good. If they're 512b drives it doesn't matter much.
A RAIDZ configuration with N disks of size X with P parity disks can hold approximately (N-P)*X bytes and can withstand P device(s) failing before data integrity is compromised.
* Start a single-parity RAIDZ (raidz) configuration at 3 disks (2+1)
* Start a double-parity RAIDZ (raidz2) configuration at 5 disks (3+2)
* Start a triple-parity RAIDZ (raidz3) configuration at 8 disks (5+3)
* (N+P) with P = 1 (raidz), 2 (raidz2), or 3 (raidz3) and N equals 2, 4, or 8
* The recommended number of disks per group is between 3 and 9. If you have more disks, use multiple groups.
Yeah sub, clarify this.A
Huh, I was not aware of this - so when 4k disks which report their 4k sector size properly become available (i.e. not the 512e stuff) you still won't be able to add a vdev of them to a storage pool which has vdev's of standard 512 disks? Ashift is a per vdev setting, not a per pool setting? Or is something else causing the problem?
I thought 512b drives had a similar "optimal" configuration not dissimilar of the 128 / N suggested here.
The ZFS Tuning wiki doesn't seem to make the distinction on of which drive (sector wise) fit into the "optimal" config that I can see.
Is this true or not? i planned on making two pools of 4 hd with 512k sector drives. Is this not the best choice?
That advice (not too many devices in one pool) is unrelated to anything with 'sectors' - it's just general advice that many devices in a single RAID-Z (1/2/3) would have a negative impact on latency. .
That means that for 4K disks the following combinations are optimal:
RAID-Z: 2, 3, 5, 9 or 17 disks
RAID-Z2: 3, 4, 6, 10 or 18 disks (anything under 6 disks produces low results for another reason, though)