Check out my first novel, midnight's simulacra!
ZFS: Difference between revisions
From dankwiki
No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
==[[udev]]== | ==[[udev]]== | ||
* ZFS generates subsystem "bdi" udev events, pointing to <tt>devices/virtual/bdi</tt> in [[sysfs]] | * ZFS generates subsystem "bdi" udev events, pointing to <tt>devices/virtual/bdi</tt> in [[sysfs]] | ||
==Basic tuning== | |||
* <tt>zfs set atime=no</tt> | |||
* <tt>zfs set xattr=sa</tt> | |||
* <tt>ashift</tt> will generally be handled properly, assuming your disk properly exposes its true sector size (check [[sysfs]]) | |||
==See also== | ==See also== | ||
* The [[growlight]] system installation tool supports ZFS | * The [[growlight]] system installation tool supports ZFS |
Revision as of 19:16, 18 July 2019
zpools
A ZFS storage pool (zpool) is a collection of devices (vdevs) that provides physical storage and data replication for ZFS datasets.
zpool vdevs
Only disks, partitions, and files can be used as "base vdevs" suitable for aggregation into mirrors and raidzs.
- Entire disks
- Partitions (not recommended)
- Files (strongly not recommended -- only as reliable as underlying filesystem)
- Partitions (not recommended)
- Mirrors (n-way replication)
- Raidz{1, 2, 3} (n-way parity)
- "spare" -- a pseudo-vdev which tracks spare disks
- Log -- separate-intent log device(s) supporting round-robining and mirroring, but not parity
- Cache -- a cache device
datasets
A more general concept than filesystems, a dataset is contained within a pool, and bound to a unique path in the ZFS namespace.
- Filesystems (not quite POSIX)
- Volume (exported block device)
- Snapshot (readonly copy of filesystem from some point at time)
- Available in .zfs/snapshot in the root of the associated filesystem
udev
- ZFS generates subsystem "bdi" udev events, pointing to devices/virtual/bdi in sysfs
Basic tuning
- zfs set atime=no
- zfs set xattr=sa
- ashift will generally be handled properly, assuming your disk properly exposes its true sector size (check sysfs)
See also
- The growlight system installation tool supports ZFS