Z¶
ZFS¶
The Z File System, or ZFS, is an advanced file system designed to overcome many of the major problems found in previous designs.
Originally developed at Sun™, ongoing open source ZFS development has moved to the OpenZFS Project .
ZFS has three major design goals:
- Data integrity: All data includes a checksum of the data. When data is written, the checksum is calculated and written along with it. When that data is later read back, the checksum is calculated again. If the checksums do not match, a data error has been detected. ZFS will attempt to automatically correct errors when data redundancy is available.
- Pooled storage: physical storage devices are added to a pool, and storage space is allocated from that shared pool. Space is available to all file systems, and can be increased by adding new storage devices to the pool.
- Performance: multiple caching mechanisms provide increased performance. ARC is an advanced memory-based read cache. A second level of disk-based read cache can be added with L2ARC, and disk-based synchronous write cache is available with ZIL.
See also
- A guide to install and use zfs on centos 7
- The Open-ZFS Project
- ZFS Manual in the FreeBSD Handbook
- The ZFS On Linux - ZOL project supplies packages and documentation for every major distro: ZFS On Linux - ZOL
- ZFS in the Ubuntu Wiki
- How to install and use ZFS on Ubuntu and why you’d wnat to
- An extensive Guide about ZFS on Debian by Aaron Toponce
- Performance tuning instructions from the Open-ZFS Project
- ZFS RAIDZ stripe width or: How I learned to stop worrying and love raidZ
- ZFS Administration Part I VDEVs