Jump to content

Oracle ZFS

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 217.194.34.103 (talk) at 16:10, 15 December 2010 (→‎Linux). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

ZFS
Developer(s)Sun Microsystems
Full nameZFS
IntroducedNovember 2005 with OpenSolaris
Structures
Directory contentsExtensible hash table
Limits
Max volume size16 EB
Max file size16 EB (264 bytes)
Max no. of files248
Max filename length255 bytes
Features
ForksYes (called Extended Attributes)
AttributesPOSIX
File system
permissions
POSIX, NFSv4 ACLs
Transparent
compression
Yes
Transparent
encryption
Yes[1]
Data deduplicationYes
Other
Supported
operating systems
Solaris, OpenSolaris, FreeBSD, Mac OS X Server 10.5, Linux via ZFS-FUSE or partial native support via 3rd party kernel module[2]

In computing, ZFS is a combined file system and logical volume manager designed by Sun Microsystems. The features of ZFS include data integrity (protection against bit rot, etc), support for high storage capacities, integration of the concepts of filesystem and volume management, snapshots and copy-on-write clones, continuous integrity checking and automatic repair, RAID-Z and native NFSv4 ACLs. ZFS is implemented as open-source software, licensed under the Common Development and Distribution License (CDDL). The ZFS name is a trademark of Oracle.[3]

History

ZFS was designed and implemented by a team at Sun led by Jeff Bonwick. It was announced on September 14, 2004.[4] Source code for ZFS was integrated into the main trunk of Solaris development on October 31, 2005[5] and released as part of build 27 of OpenSolaris on November 16, 2005. Sun announced that ZFS was included in the 6/06 update to Solaris 10 in June 2006, one year after the opening of the OpenSolaris community.[6]

The name originally stood for "Zettabyte File System". The original name selectors happened to like the name, and a ZFS file system has the ability to store 258 zettabytes, where each ZB is 270 bytes.[7]

Version numbers

As new features are introduced the version number of the ZPool and Z file system are incremented to designate the format and features available.[8][9] Notable ZFS storage pool versions include:

  • 14 - Supported by OpenSolaris 2009.06, FreeBSD 8.1
  • 15 - Supported by Solaris 10 10/09
  • 17 - Triple Parity RAID-Z
  • 19 - Supported by Solaris 10 09/10
  • 21 - Deduplication

Features

Data Integrity

One major feature that distinguishes ZFS from other file systems is that ZFS is designed from ground up with a focus on data integrity. That is, protect the file data against silent corruption, bit rot, etc (caused by cosmic radiation, current spikes, bugs in disk firmware, ghost writes, etc). Recent research shows that none of the currently widespread file systems— such as XFS, JFS, ReiserFS, or NTFS— nor hardware RAID provide protection against such problems [1],[2],[3],[4],[5].

A modern hard disk devotes 25% or more of its surface to error detection codes. A lot of errors occur during normal usage, but are invisible to the user as they get corrected on-the-fly. A tiny fraction of these errors are not correctable, which can be seen in the specifications of a new Enterprise SAS drive, typically it says "1 irrecoverable error in every 1016 bits" [6]. Even worse, some errors are not even detectable by the hardware or the software - this is called Silent Corruption. CERN finds Silent Corruption problematic in a study [7].

These problems have not been a serious concern while storage devices remained relatively small and slow. Hence, a user very rarely faced silent corruption, so it was not deemed to be a problem that required a solution. With the advent of larger drives and very fast RAID setups, a user is capable of transferring 1016 bits in a sufficiently short time. In particular, ZFS creator Jeff Bonwick stated that Greenplum's fast database solution faces silent corruption every 15 minutes [10], which is one of the reasons that Greenplum now base their fast database solution on ZFS. These large and fast raid setups require new file systems that focus on data integrity. This is one of the design goals of ZFS. Jeff Bonwick explains more about ZFS design goals in the link about Greenplum and silent corruption. Initial research indicated that ZFS clearly protects data better than earlier solutions.[11]

Storage pools

Unlike traditional file systems, which reside on single devices and thus require a volume manager to use more than one device, ZFS filesystems are built on top of virtual storage pools called zpools. A zpool is constructed of virtual devices (vdevs), which are themselves constructed of block devices: files, hard drive partitions, or entire drives, with the last being the recommended usage.[12] Thus, a vdev can be viewed as a group of hard drives. This means a zpool consists of one or more groups of drives. Block devices within a vdev may be configured in different ways, depending on needs and space available: non-redundantly (similar to RAID 0), as a mirror (RAID 1) of two or more devices, as a RAID-Z group of three or more devices (Similar to RAID-5), or as a RAID-Z2 group of four or more devices.[13] In July 2009, triple-parity RAID-Z3 was added to OpenSolaris.[14][15]

In addition, pools can have hot spares to compensate for failing disks. ZFS also supports both read and write caching, for which special devices can be used. Solid State Devices can be used for the L2ARC, or Level 2 ARC, speeding up read operations, while NVRAM buffered SLC memory can be boosted with supercapacitors to implement a fast, non-volatile write cache, improving synchronous writes. Finally, when mirroring, block devices can be grouped according to physical chassis, so that the filesystem can continue in the case of the failure of an entire chassis.

Storage pool composition is not limited to similar devices but can consist of ad-hoc, heterogeneous collections of devices, which ZFS seamlessly pools together, subsequently doling out space to diverse filesystems as needed. Arbitrary storage device types can be added to existing pools to expand their size at any time. [16]

The storage capacity of all vdevs is available to all of the file system instances in the zpool. A quota can be set to limit the amount of space a file system instance can occupy, and a reservation can be set to guarantee that space will be available to a file system instance.

Capacity

ZFS is a 128-bit file system, so it can address 18 quintillion (1.84 × 1019) times more data than current 64-bit systems. The limitations of ZFS are designed to be so large that they would never be encountered, given the known limits of physics (and the number of atoms in the Earth's crust to build such a storage device). Some theoretical limits in ZFS are:

  • 264 — Number of snapshots of any file system[17]
  • 248 — Number of entries in any individual directory[18]
  • 16 EB (264 bytes) — Maximum size of a file system
  • 16 EB — Maximum size of a single file
  • 16 EB — Maximum size of any attribute
  • 256 ZB (278 bytes) — Maximum size of any zpool
  • 256 — Number of attributes of a file (actually constrained to 248 for the number of files in a ZFS file system)
  • 264 — Number of devices in any zpool
  • 264 — Number of zpools in a system
  • 264 — Number of file systems in a zpool

Copy-on-write transactional model

ZFS uses a copy-on-write transactional object model. All block pointers within the filesystem contain a 32-bit checksum or 256-bit hash (currently a choice between Fletcher-2, Fletcher-4, or SHA-256)[19] of the target block which is verified when the block is read. Blocks containing active data are never overwritten in place; instead, a new block is allocated, modified data is written to it, then any metadata blocks referencing it are similarly read, reallocated, and written. To reduce the overhead of this process, multiple updates are grouped into transaction groups, and an intent log is used when synchronous write semantics are required. The blocks are arranged in a tree, as are their checksums (see Merkle signature scheme).

Snapshots and clones

An advantage of copy-on-write is that when ZFS writes new data, the blocks containing the old data can be retained, allowing a snapshot version of the file system to be maintained. ZFS snapshots are created very quickly, since all the data composing the snapshot is already stored; they are also space efficient, since any unchanged data is shared among the file system and its snapshots.

Writeable snapshots ("clones") can also be created, resulting in two independent file systems that share a set of blocks. As changes are made to any of the clone file systems, new data blocks are created to reflect those changes, but any unchanged blocks continue to be shared, no matter how many clones exist.

Dynamic striping

Dynamic striping across all devices to maximize throughput means that as additional devices are added to the zpool, the stripe width automatically expands to include them; thus all disks in a pool are used, which balances the write load across them.

Variable block sizes

ZFS uses variable-sized blocks of up to 128 kilobytes. The currently available code allows the administrator to tune the maximum block size used as certain workloads do not perform well with large blocks. Automatic tuning to match workload characteristics is contemplated.[citation needed]

If data compression (LZJB) is enabled, variable block sizes are used. If a block can be compressed to fit into a smaller block size, the smaller size is used on the disk to use less storage and improve IO throughput (though at the cost of increased CPU use for the compression and decompression operations).

Lightweight filesystem creation

In ZFS, filesystem manipulation within a storage pool is easier than volume manipulation within a traditional filesystem; the time and effort required to create or resize a ZFS filesystem is closer to that of making a new directory than it is to volume manipulation in some other systems.

Cache management

ZFS also uses the ARC, a new method for cache management, instead of the traditional Solaris virtual memory page cache.

Adaptive endianness

Pools and their associated ZFS file systems can be moved between different platform architectures, including systems implementing different byte orders. The ZFS block pointer format stores filesystem metadata in an endian-adaptive way; individual metadata blocks are written with the native byte order of the system writing the block. When reading, if the stored endianness doesn't match the endianness of the system, the metadata is byte-swapped in memory.

This does not affect the stored data itself; as is usual in POSIX systems, files appear to applications as simple arrays of bytes, so applications creating and reading data remain responsible for doing so in a way independent of the underlying system's endianness.

Deduplication

Deduplication support has been added to the ZFS source repository at the end of October 2009.[20] The OpenSolaris ZFS development packages have been available since December 3 2009 (build 128).

The recommended hardware for deduplication is 8GiB system memory + 2GiB for every 1TiB of storage (10TiB = 20GiB extra RAM for a total of 28GiB). As well as an SSD to store de-dupe tables. Insufficient RAM causes dedup to result in significant HDD thrashing, which lowers performance significantly.

Deduplication is also not guaranteed to be stable, it is only available in beta versions of operating systems; the latest stable releases of FreeBSD, Solaris, and other ZFS capable OS all use an earlier version of zpool that does not support deduplication.

Additional capabilities

  • Explicit I/O priority with deadline scheduling.
  • Claimed globally optimal I/O sorting and aggregation.
  • Multiple independent prefetch streams with automatic length and stride detection.
  • Parallel, constant-time directory operations.
  • End-to-end checksumming, using a kind of "Data Integrity Field", allowing data corruption detection (and recovery if you have redundancy in the pool).
  • Transparent filesystem compression. Supports LZJB and gzip.[21]
  • Intelligent scrubbing and resilvering (resyncing).[22]
  • Load and space usage sharing between disks in the pool.[23]
  • Ditto blocks: Configurable data replication per filesystem, with zero, one or two extra copies requested per write for user data, and with that same base number of copies plus one or two for metadata (according to metadata importance).[24] If the pool has several devices, ZFS tries to replicate over different devices. Ditto blocks are primarily an additional protection against corrupted sectors, not against total disk failure.[25]
  • ZFS design (copy-on-write + superblocks) is safe when using disks with write cache enabled, if they honor the write barriers. This feature provides safety and a performance boost compared with some other filesystems.
  • When entire disks are added to a ZFS pool, ZFS automatically enables their write cache. This is not done when ZFS only manages discrete slices of the disk, since it doesn't know if other slices are managed by non-write-cache safe filesystems, like UFS.
  • Per-user and per-group quotas support.[26]
  • Filesystem encryption since Solaris 11 Express[1]
  • Planned features:
    • The so-called Block Pointer rewrite functionality is due to be added in the same time frame, paving the way for resizing pools, defragmentation, (re-)applying compression on filesystems and so on.[27]
    • Recovery tools will be added for recovering from the loss of a pool.

Limitations

  • Capacity expansion is normally achieved by adding groups of disks as a top-level vdev: simple device, RAID-Z, RAID-Z2, RAID-Z3, or mirrored. Newly written data will dynamically start to use all available vdevs. It is also possible to expand the array by iteratively swapping each drive in the array with a bigger drive and waiting for ZFS to heal itself — the heal time will depend on the amount of stored information, not the disk size. The new free space will not be available until all the disks have been swapped.
  • It is currently not possible to reduce the number of top-level vdevs in a pool nor otherwise reduce pool capacity.[28] This functionality was said to be in development already in 2007[29]. It is not available as of Solaris 10 9/10 (AKA update 9).
  • It is not possible to add a disk as a column to a RAID-Z, RAID-Z2, or RAID-Z3 vdev. This feature depends on the block pointer rewrite functionality due to be added soon. You can however create a new RAID-Z vdev and add it to the zpool.
  • Vdevs cannot be nested, so a mirror or RAID-Z top-level vdev can only contain files or disks. Mirrors of mirrors (or other combinations) are not allowed.
  • Reconfiguring the number of devices in a top-level vdev requires copying data offline, destroying the pool, and recreating the pool with the new top-level vdev configuration, except for adding extra redundancy to an existing mirror, which can be done at any time or if all top level vdevs are mirrors with sufficient redundancy the zpool split[30] command can be used to remove a vdev from each top level vdev in the pool, creating a 2nd pool with identical data.
  • ZFS is not a native cluster, distributed, or parallel file system and cannot provide concurrent access from multiple hosts as ZFS is a local file system. Sun's Lustre distributed filesystem will adapt ZFS as back-end storage for both data and metadata in version 3.0, which is scheduled to be released in 2010.[31]
  • ZFS expects a disk cache flush command to commit cached data to media. Some virtualization software are configured by default to ignore cache flush commands, and some consumer-grade hardware 'lies' about actually executing the command as well. For example, VirtualBox can be, but is not by default configured to properly respect cache flushes (configuration would be using the procedure described in section 11.1.3 Responding to guest IDE flush requests of the Sun VirtualBox User Manual[32]); consumer grade USB disk enclosures are said to be particularly vulnerable to this problem. In the event of an outage or fault this can quite possibly lead to damage to the pool; recovery can be attempted by importing the pool as of few transactions ago (i.e. an older uberblock), losing minutes/seconds of data. Recovery enhancement is expect to be integrated in Q1 2010 (already in the latest development versions of OpenSolaris). A scrub is used to verify the integrity; however, some files may still need to be restored from backups, in the unlikely event they have already been deleted, blocks freed and then overwritten.
  • ZFS has no defragmentation utility. Usage of COW with often changed files leads to high fragmentation[citation needed].
  • "Copies" are not the same thing as redundant virtual devices for purposes of data recovery. "Copies" can recover from media failures or other sector-level corruption, including unrecoverable read errors. To protect against whole device failure, device-level redundancy (mirrors, raidz, raidz2, or raidz3) is needed.[33]

Platforms

ZFS is part of Sun's own Solaris operating system and is thus available on both SPARC and x86-based systems. Since the code for ZFS is open source, a port to other operating systems and platforms can be produced without Sun's involvement.

OpenSolaris

OpenSolaris 2008.05 and 2009.06 use ZFS as their default filesystem. There are over a dozen 3rd party distributions, of which nearly a dozen are mentioned here. (OpenIndiana and Illumos are two new distributions not included on the OpenSolaris distribution reference page.)

FreeBSD

FreeBSD version 8 includes a much-updated implementation of ZFS.[34]. zpool version 13 is supported in 8.0-RELEASE.[34] zpool version 14 support was added to the 8-STABLE branch on 11 January 2010,[35] and is included in 8.1-RELEASE.

Pawel Jakub Dawidek ported ZFS to FreeBSD, and it has been part of FreeBSD since version 7.0.[36] 7-stable is on zpool version 13 while 8-stable and the current development branch uses ZFS Pool version 15. Moreover, zfsboot has been implemented in both branches.[37][38] It's fully functional; the only missing features are kernel CIFS server and iSCSI.

FreeNAS

FreeNAS, an embedded open source network-attached storage (NAS) distribution based on FreeBSD, has the same ZFS support as FreeBSD.

GNU/kFreeBSD

GNU/kFreeBSD is a special case, because by virtue of being based on the kernel of FreeBSD, it provides the kernel side of ZFS support (see above). However, it depends on the distribution of GNU/kFreeBSD whether the necessary userland tools are available. The only distribution of this system to the date (Debian GNU/kFreeBSD) provides ZFS utilities in the zfsutils package. An unofficial installer with ZFS support is also available.

NetBSD

ZFS port was started as a part of the 2007 Google Summer of Code and in August 2009 the code has made it into NetBSD's source tree.[39]

Mac OS X

The first indication of Apple Inc.'s interest in ZFS was an April 2006 post on the opensolaris.org zfs-discuss mailing list where an Apple employee mentioned being interested in porting ZFS to their Mac OS X operating system.[40]

In the release version of Mac OS X 10.5, ZFS was available in read-only mode from the command line, which lacks the possibility to create zpools or write to them.[41] Before the 10.5 release, Apple released the "ZFS Beta Seed v1.1", which allowed read-write access and the creation of zpools,[42] however the installer for the "ZFS Beta Seed v1.1" has been reported to only work on version 10.5.0, and has not been updated for version 10.5.1 and above.[43]

In August 2007, Apple opened a ZFS project on their Mac OS Forge site. On that site, Apple provided the source code and binaries of their port of ZFS which includes read-write access, but there was no installer available[44] until a third-party developer created one.[45]

In October 2009, Apple announced a shutdown of the ZFS project on Mac OS Forge. No explanation was given, just the following statement: "The ZFS project has been discontinued. The mailing list and repository will also be removed shortly." Versions of the previously released source and binaries, as well as the wiki, have been preserved and development has been adopted by a group of enthusiasts.[46][47]

Complete ZFS support was once advertised as a feature of Snow Leopard Server (Mac OS X Server 10.6). However, all references to this feature have been silently removed; it is no longer listed on the Snow Leopard Server features page.[48] Apple has not commented regarding the omission.

Linux

Porting ZFS to Linux is complicated by the fact that the GNU General Public License, which governs the Linux kernel, is incompatible with the Sun CDDL under which ZFS is distributed. According to some developers[who?] a single derived work of both projects cannot be legally distributed, as it is not possible to simultaneously meet both licenses' requirements. To include ZFS in the Linux kernel it would have to be cleanly reimplemented, and patents may hamper this.[49]

Another solution to this problem was to port ZFS to Linux's FUSE system so the filesystem runs in userspace instead, where it is not considered a derived work of the kernel. A project to do this was sponsored by Google's Summer of Code program in 2006[50] The original ZFS on FUSE project is available here. Sun Microsystems has stated that a Linux port is being investigated.[51] Development for ZFS on FUSE/Linux now takes place at zfs-fuse.net.

A native port of ZFS for Linux is being worked on. This ZFS on Linux port was produced at the Lawrence Livermore National Laboratory (LLNL) under Contract No. DE-AC52-07NA27344 (Contract 44) between the U.S. Department of Energy (DOE) and Lawrence Livermore National Security, LLC (LLNS) for the operation of LLNL. It has been approved for release under LLNL-CODE-403049. It does not yet implement ZPL layer, thus it's not possible to use it as a filesystem. Though it does implement user space virtual block device (vdev) creation through it's ZVOL interface. ZVOL virtual block devices may be formatted with a filesystem, affording the filesystem some of the benefits of the ZFS feature set. [52]

Another native port is also being worked on by KQ Infotech [8].[53] This port used the LLNL ZVOL implementation as a starting point and are working on the POSIX layer. Currently in beta quality, a GA release supporting zpool v28 is planned in january 2011 [54].

List of Operating Systems, Distros and add-ons that support ZFS, the zpool version it supports, and the Solaris build they are based on (if any):

OS Zpool version Build Comments
Oracle Solaris Express 11 2010.11 31 b151a licensed for testing only
OpenSolaris 2009.06 14 b111b
OpenSolaris (last dev) 22 b134
OpenIndiana 28 b147
Nexenta Core 3.0.1 22 b134 GNU userland
NexentaStor Community 22 b134 up to 18TB, web admin
NexentaStor Enterprise 22 b134 + not free, web admin
FreeBSD 8.1 15 no CIFS or iSCSI
Linux fuse 0.6.9 23 low efficiency
Native linux port (LLNL) 28 no POSIX layer
Native linux port (KQ infotech) 26 beta version, includes POSIX layer
Belenix 0.8b1 14 b111
Schillix 0.7.2 28 b147
StormOS "hail" based on Nexenta
Jaris Japanese
Milax 0.5 20 b128a small size
Korona 4.5.0 22 b134 KDE
EON NAS 22 b130 embedded NAS

(updated Nov. 15 2010)

See also

References

  1. ^ a b "What's new in Solaris 11 Express 2010.11" (PDF). Oracle. Retrieved 2010-11-17.
  2. ^ "1.1 What about the licensing issue?". Retrieved 2010-18-11. {{cite web}}: Check date values in: |accessdate= (help)
  3. ^ "Sun Trademarks - ZFS". Sun Microsystems.
  4. ^ "ZFS: the last word in file systems". Sun Microsystems. September 14, 2004. Archived from the original on April 28, 2006. Retrieved 2006-04-30.
  5. ^ Jeff Bonwick (October 31, 2005). "ZFS: The Last Word in Filesystems". Jeff Bonwick's Blog. Retrieved 2006-04-30.
  6. ^ "Sun Celebrates Successful One-Year Anniversary of OpenSolaris". Sun Microsystems. June 20, 2006.
  7. ^ "ZFS FAQ at OpenSolaris.org". Sun Microsystems. Retrieved 2009-03-03.
  8. ^ "Solaris ZFS Administration Guide, Appendix A ZFS Version Descriptions". Sun Microsystems. 2009. Retrieved 2010-08-17.
  9. ^ "Version". Sun Microsystems. Retrieved 2010-08-17.
  10. ^ "A Conversation with Jeff Bonwick and Bill Moore". Association for Computing Machinery. 2007-11-15. Retrieved 2010-12-06.
  11. ^ Yupu Zhang, Abhishek Rajimwale, Andrea C. Arpaci-Dusseau, Remzi H. Arpaci-Dusseau. "End-to-end Data Integrity for File Systems: A ZFS Case Study" (PDF). Madison: Computer Sciences Department, University of Wisconsin. p. 14. Retrieved 2010-12-06.{{cite web}}: CS1 maint: multiple names: authors list (link)
  12. ^ "Solaris ZFS Administration Guide". Sun Microsystems. Retrieved 2007-10-02.
  13. ^ "ZFS Best Practices Guide". Solaris Performance Wiki. Retrieved 2007-10-02.
  14. ^ Leventhal, Adam. "Bug ID: 6854612 triple-parity RAID-Z". Sun Microsystems. Retrieved 2009-07-17.
  15. ^ Leventhal, Adam (2009-07-16). "6854612 triple-parity RAID-Z". zfs-discuss (Mailing list). Retrieved 2009-07-17. {{cite mailing list}}: Unknown parameter |mailinglist= ignored (|mailing-list= suggested) (help)
  16. ^ "Solaris ZFS Enables Hybrid Storage Pools—Shatters Economic and Performance Barriers"
  17. ^ "Solaris ZFS Administration Guide". Sun Microsystems. Retrieved 2007-10-05.
  18. ^ "Solaris ZFS Administration Guide". Sun Microsystems. Retrieved 2007-10-05.
  19. ^ "ZFS On-Disk Specification" (PDF). Sun Microsystems, Inc. 2006. See section 2.4.
  20. ^ ""ZFS Deduplication"".
  21. ^ "Solaris ZFS Administration Guide". Chapter 6 Managing ZFS File Systems. Retrieved 2009-03-17.
  22. ^ "Smokin' Mirrors". Jeff Bonwick's Weblog. 2006-05-02. Retrieved 2007-02-23.
  23. ^ "ZFS Block Allocation". Jeff Bonwick's Weblog. 2006-11-04. Retrieved 2007-02-23.
  24. ^ "Ditto Blocks - The Amazing Tape Repellent". Flippin' off bits Weblog. 2006-05-12. Retrieved 2007-03-01.
  25. ^ "Adding new disks and ditto block behaviour". Retrieved 2009-10-19.
  26. ^ "OpenSolaris.org". Sun Microsystems. Retrieved 2009-05-22.
  27. ^ Jeff Bonwick Keynote at Kernel Conference Australia 2009
  28. ^ "Bug ID 4852783: reduce pool capacity". OpenSolaris Project. Retrieved 2009-03-28.
  29. ^ Goebbels, Mario (2007-04-19). "Permanently removing vdevs from a pool". zfs-discuss (Mailing list). {{cite mailing list}}: Unknown parameter |mailinglist= ignored (|mailing-list= suggested) (help)
  30. ^ http://docs.sun.com/app/docs/doc/816-5166/zpool-1m?l=en&n=1&a=view
  31. ^ ""Lustre Roadmap"".
  32. ^ ""Sun VirtualBox User Manual version 3.0.4" (PDF).
  33. ^ ""The official error message for a vdev going missing, even if it's replaced"".
  34. ^ a b "FreeBSD 8.0-RELEASE Release Notes". FreeBSD. Retrieved 2009-11-27.
  35. ^ "FreeBSD 8.0-STABLE Subversion logs". FreeBSD. Retrieved 2010-02-05.
  36. ^ Dawidek, Pawel (April 6, 2007). "ZFS committed to the FreeBSD base". Retrieved 2007-04-06.
  37. ^ "Revision 192498". May 20, 2009. Retrieved 2009-05-22.
  38. ^ "ZFS v13 in 7-STABLE". May 21, 2009. Retrieved 2009-05-22.
  39. ^ "NetBSD Google Summer of Code projects: ZFS".
  40. ^ "Porting ZFS to OSX". zfs-discuss. April 27, 2006. Retrieved 2006-04-30.
  41. ^ "Apple: Leopard offers limited ZFS read-only". MacNN. June 12, 2007. Retrieved 2007-06-23.
  42. ^ "Apple delivers ZFS Read/Write Developer Preview 1.1 for Leopard". Ars Technica. October 7, 2007. Retrieved 2007-10-07.
  43. ^ Ché Kristo (November 18, 2007). "ZFS Beta Seed v1.1 will not install on Leopard.1 (10.5.1) « ideas are free". Retrieved 2007-12-30.
  44. ^ http://zfs.macosforge.org
  45. ^ http://alblue.blogspot.com/2008/11/zfs-119-on-mac-os-x.html
  46. ^ http://code.google.com/p/maczfs/
  47. ^ http://groups.google.com/group/zfs-macos/?pli=1
  48. ^ "Snow Leopard". June 9, 2009. Retrieved 2008-06-10.
  49. ^ Jeremy Andrews (April 19, 2007). "Linux: ZFS, Licenses and Patents". Retrieved 2007-04-21.
  50. ^ Ricardo Correia (March 16, 2009). "ZFS on FUSE/Linux". Retrieved 2009-03-16.
  51. ^ "Fast Track to Solaris 10 Adoption: ZFS Technology". Solaris 10 Technical Knowledge Base. Sun Microsystems. Retrieved 2006-04-24.
  52. ^ "ZVOL Example". Retrieved 2010-11-18.
  53. ^ Darshin (August 24, 2010). "ZFS Port to Linux (all versions)". Retrieved 2010-08-31.
  54. ^ Phoronix (November 22, 2010). "Running The Native ZFS Linux Kernel Module, Plus Benchmarks". Retrieved 2010-12-07.

Bibliography

  • Watanabe, Scott (November 23, 2009). "Solaris ZFS Essentials" (Document). Prentice Hall. p. 256. {{cite document}}: Unknown parameter |edition= ignored (help); Unknown parameter |format= ignored (help); Unknown parameter |isbn= ignored (help); Unknown parameter |url= ignored (help)