Programowanie

ZFS

ZFS

ZFS
Developer Sun Microsystems
Full name ZFS
Introduced November 2005 (OpenSolaris)
Partition identifier
Structures
Directory contents Extensible hash table
File allocation
Bad blocks
Limits
Max file size 16 EiB
Max number of files 248
Max filename size 255 bytes
Max volume size 16 EiB
Allowed characters in filenames
Features
Dates recorded
Date range
Date resolution
Forks Yes (called Extended Attributes)
Attributes POSIX
File system permissions POSIX
Transparent compression Yes
Transparent encryption Yes (currently alpha)[1]
Supported operating systems Sun Solaris, Apple Mac OS X 10.5, FreeBSD, Linux via FUSE

In computing, ZFS is a file system originally created by Sun Microsystems for the Solaris Operating System. The features of ZFS include high storage capacity, integration of the concepts of filesystem and volume management, a novel on-disk structure, lightweight instances, and easy storage pool management. ZFS is implemented as open-source software, licensed under the Common Development and Distribution License (CDDL).

Contents

[edit] History

ZFS was designed and implemented by a team at Sun led by Jeff Bonwick. It was announced on September 14, 2004.[2] Source code for ZFS was integrated into the main trunk of Solaris development on October 31, 2005[3] 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.[4]

The name originally stood for "Zettabyte File System", but is now a pseudo-initialism.[5]

[edit] 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.[6] 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, or as a RAID-Z2 group of five or more devices.[7] 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.

[edit] Capacity

ZFS is a 128-bit file system, so it can store 18 billion billion (18.4 × 1018) times more data than current 64-bit systems. The limitations of ZFS are designed to be so large that they will not be encountered in practice for some time. Some theoretical limits in ZFS are:

If a billion computers each filled a billion individual file systems per second, the time required to reach the limit of the overall system would be almost 1,000 times the estimated age of the universe.

Project leader Bonwick said, "Populating 128-bit file systems would exceed the quantum limits of earth-based storage. You couldn't fill a 128-bit storage pool without boiling the oceans."[2] Later he clarified:

Although we'd all like Moore's Law to continue forever, quantum mechanics imposes some fundamental limits on the computation rate and information capacity of any physical device. In particular, it has been shown that 1 kilogram of matter confined to 1 liter of space can perform at most 1051 operations per second on at most 1031 bits of information [see Seth Lloyd, "Ultimate physical limits to computation." Nature 406, 1047-1054 (2000)]. A fully populated 128-bit storage pool would contain 2128 blocks = 2137 bytes = 2140 bits; therefore the minimum mass required to hold the bits would be (2140 bits) / (1031 bits/kg) = 136 billion kg.
To operate at the 1031 bits/kg limit, however, the entire mass of the computer must be in the form of pure energy. By E=mc², the rest energy of 136 billion kg is 1.2x1028 J. The mass of the oceans is about 1.4x1021 kg. It takes about 4,000 J to raise the temperature of 1 kg of water by 1 degree Celsius, and thus about 400,000 J to heat 1 kg of water from freezing to boiling. The latent heat of vaporization adds another 2 million J/kg. Thus the energy required to boil the oceans is about 2.4x106 J/kg * 1.4x1021 kg = 3.4x1027 J. Thus, fully populating a 128-bit storage pool would, literally, require more energy than boiling the oceans.[10]

[edit] Copy-on-write transactional model

ZFS uses a copy-on-write transactional object model. All block pointers within the filesystem contain a 256-bit checksum 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, and 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.

[edit] 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.

[edit] 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.

[edit] 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 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).

[edit] 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.

[edit] Additional capabilities

[edit] Cache management

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

[edit] Limitations

ZFS does not support per-user or per-group quotas. Instead, it is possible to create user-owned filesystems, each with its own size limit. Intrinsically, there is no practical quota solution for the file systems shared among several users (such as team projects, for example), where the data cannot be separated per user, although it could be implemented on top of the ZFS stack.

Capacity expansion is normally achieved by adding groups of disks as vdev (stripe, RAID-Z, RAID-Z2, 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 amount of stored information, not the disk size. If a snapshot is taken during this process, it will cause the heal to be restarted.

It is currently not possible to reduce the number of vdevs in a pool nor otherwise reduce pool capacity. However, it is currently being worked on by the ZFS team.

It is not possible to add a disk to a RAID-Z or RAID-Z2 vdev. This feature appears very difficult to implement.

Reconfiguring storage requires copying data offline, destroying the pool, and recreating the pool with the new policy.

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 1.8, which will be released in Q2 2008. [14]

It is currently not possible to natively nest vdevs within a zpool — to create, for example, a non-redundant pool of RAID-Z vdevs (similar to a RAID 5+0).

[edit] Solaris implementation issues

The current ZFS implementation (Solaris 10 11/06) has some issues administrators should know before deploying it. Many of these issues are scheduled to be addressed in future releases.

[edit] 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.

[edit] Nexenta OS

Nexenta OS, a complete GNU-based open source operating system built on top of the OpenSolaris kernel and runtime, includes a ZFS implementation, added in version alpha1. More recently, Nexenta Systems announced NexentaStor, their ZFS storage appliance providing NAS/SAN/iSCSI capabilities and based on Nexenta OS. NexentaStor includes a GUI that simplifies the process of utilizing ZFS. Also, Nexenta announced in February of 2008 a significant release, called version NexentaCore Platform 1.0, of their operating system which serves as a basis for software appliances from Nexenta and other distributions.

[edit] Mac OS X

In a post on the opensolaris.org zfs-discuss mailing list, Apple Inc. announced it was porting ZFS to their Mac OS X operating system.[27] From Mac OS X 10.5 Developer Seed 9A321, support for ZFS has been included, but lacks the ability to act as a root partition, noted above. Also, attempts to format local drives using ZFS were unsuccessful; this is a known bug.[28]

On June 6, 2007, Sun's CEO Jonathan I. Schwartz announced that Apple would make ZFS "the" filesystem in Mac OS 10.5 Leopard.[29] Marc Hamilton, VP for Solaris Marketing later wrote to clarify that, in his opinion, Apple is planning to use ZFS in future versions of Mac OS X, but not necessarily as the default filesystem for Mac OS X 10.5 Leopard.[30] In the release version of Mac OS X 10.5, ZFS is available in read-only mode from the command line, which lacks the possibility to create zpools or write to them,[31] but Apple has also released the "ZFS Read/Write Developer Preview 1.1 for Leopard"[32], which allows read-write access and the creation of zpools. The installer for the "ZFS Read/Write Developer Preview 1.1 for Leopard" is currently only working on version 10.5.0, and has not been updated for version 10.5.1 and above.[33] As of January 2008, Apple provides read-write binaries and source, but they must be installed by hand.

[edit] Linux

Porting ZFS to Linux is complicated by the fact that the GNU General Public License, which governs the Linux kernel, prohibits linking with code under certain licenses, such as CDDL, the license ZFS is released under.[34] One solution to this problem is to port ZFS to Linux's FUSE system so the filesystem runs in userspace instead. A project to do this was sponsored by Google's Summer of Code program in 2006, and is in Beta stage as of May 2007.[35] Running a file system outside the kernel on traditional Unix-like systems can have a significant performance impact. However, NTFS-3G (another file system driver built on FUSE) performs well when compared to other traditional file system drivers.[36] This shows that excellent performance is possible with ZFS on Linux after proper optimization. Sun Microsystems has stated that a Linux port is being investigated.[37]

[edit] BSD

Pawel Jakub Dawidek has ported and committed ZFS to FreeBSD for inclusion in FreeBSD 7.0, released on February 28, 2008.[38]

As a part of the 2007 Google Summer of Code ZFS is being ported to NetBSD.[39]

[edit] Other

There are no plans to port ZFS to HP-UX or AIX.[37]

[edit] 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.

[edit] See also

[edit] References

  1. ^ a b OpenSolaris.org. Sun Microsystems. Retrieved on 2007-10-21.
  2. ^ a b ZFS: the last word in file systems. Sun Microsystems (September 14, 2004). Retrieved on 2006-04-30.
  3. ^ Jeff Bonwick (October 31, 2005). ZFS: The Last Word in Filesystems. Jeff Bonwick's Blog. Retrieved on 2006-04-30.
  4. ^ Sun Celebrates Successful One-Year Anniversary of OpenSolaris. Sun Microsystems (June 20, 2006).
  5. ^ Jeff Bonwick (2006-05-04). You say zeta, I say zetta. Jeff Bonwick's Blog. Retrieved on 2006-09-08.
  6. ^ Solaris ZFS Administration Guide. Sun Microsystems. Retrieved on 2007-10-02.
  7. ^ ZFS Best Practices Guide. Solaris Performance Wiki. Retrieved on 2007-10-02.
  8. ^ Solaris ZFS Administration Guide. Sun Microsystems. Retrieved on 2007-10-05.
  9. ^ Solaris ZFS Administration Guide. Sun Microsystems. Retrieved on 2007-10-05.
  10. ^ Jeff Bonwick (September 25, 2004). 128-bit storage: are you high?. Sun Microsystems. Retrieved on 2006-07-12.
  11. ^ Smokin' Mirrors. Jeff Bonwick's Weblog (2006-05-02). Retrieved on 2007-02-23.
  12. ^ ZFS Block Allocation. Jeff Bonwick's Weblog (2006-11-04). Retrieved on 2007-02-23.
  13. ^ Ditto Blocks - The Amazing Tape Repellent. Flippin' off bits Weblog (2006-05-12). Retrieved on 2007-03-01.
  14. ^ Architecture ZFS for Lustre. Sun Microsystems. Retrieved on 2008-02-18.
  15. ^ Latest ZFS add-ons. milek's blog (2007-03-28). Retrieved on 2007-03-29.
  16. ^ ZFS Bootable datasets - happily rumbling. Tim Foster's blog (2007-03-29). Retrieved on 2007-04-01.
  17. ^ The Dynamics of ZFS. Roch Bourbonnais' Weblog (2006-06-21). Retrieved on 2007-02-19.
  18. ^ Implementing fbarrier() on ZFS. zfs-discuss (2007-02-13). Retrieved on 2007-02-13.
  19. ^ zfs-discuss ZFS gzip compression. Prabahar Jeyaram (2007-09-29). Retrieved on 2007-12-11.
  20. ^ scrub/resilver has to start over when a snapshot is taken. OpenSolaris Bug Tracker (2005-10-30). Retrieved on 2007-03-14.
  21. ^ symlinks and ditto blocks. OpenSolaris Forums (2007-03-28). Retrieved on 2007-07-13.
  22. ^ zpl symlinks should have their own object type. OpenSolaris Bug Tracker (2007-01-23). Retrieved on 2007-07-13.
  23. ^ Plans for swapping to part of a pool. OpenSolaris Forums (2007-07-12). Retrieved on 2007-07-14.
  24. ^ system hang while zvol swap space shorted. OpenSolaris Bug Tracker (2007-02-26). Retrieved on 2007-07-14.
  25. ^ Panic when ZFS pool goes down?. OpenSolaris Forums (2002-02-25).
  26. ^ zpool failmode property [PSARC/2007/567 FastTrack timeout 10/08/2007] (2007-10-10).
  27. ^ Porting ZFS to OSX. zfs-discuss (April 27, 2006). Retrieved on 2006-04-30.
  28. ^ Mac OS X 10.5 9A326 Seeded. InsanelyMac Forums (December 14, 2006). Retrieved on 2006-12-14.
  29. ^ Sun announce ZFS is "the file system" in Mac OS X v10.5. Sun (June 6, 2007). Retrieved on 2007-06-06.
  30. ^ Marc Hamilton's weblog: Apple is planning to use the ZFS file system from OpenSolaris in future versions of their OS. Marc Hamilton's weblog (June 7, 2007). Retrieved on 2007-06-07.
  31. ^ Apple: Leopard offers limited ZFS read-only. MacNN (June 12, 2007). Retrieved on 2007-06-23.
  32. ^ Apple delivers ZFS Read/Write Developer Preview 1.1 for Leopard. Ars Technica (October 7, 2007). Retrieved on 2007-10-07.
  33. ^ Ché Kristo (November 18, 2007). ZFS Beta Seed v1.1 will not install on Leopard.1 (10.5.1) « ideas are free. Retrieved on 2007-12-30.
  34. ^ Jeremy Andrews (April 19, 2007). Linux: ZFS, Licenses and Patents. Retrieved on 2007-04-21.
  35. ^ Ricardo Correia (May 26, 2006). ZFS on FUSE/Linux. Retrieved on 2006-07-15.
  36. ^ Szabolcs Szakacsits (November 28, 2007). NTFS-3G Read/Write Driver Performance. Retrieved on 2008-01-20.
  37. ^ a b Fast Track to Solaris 10 Adoption: ZFS Technology. Solaris 10 Technical Knowledge Base. Sun Microsystems. Retrieved on 2006-04-24.
  38. ^ Dawidek, Pawel (April 6, 2007). ZFS committed to the FreeBSD base. Retrieved on 2007-04-06.
  39. ^ NetBSD Google Summer of Code projects: ZFS.

[edit] External links