XFS: Difference between revisions
RzR~enwiki (talk | contribs) No edit summary |
|||
Line 30: | Line 30: | ||
==History== |
==History== |
||
Development of XFS was started by [[Silicon Graphics]] in 1993, with first deployment being seen on IRIX 5.3 in 1994. The filesystem was released under the [[GNU General Public License]] in May 2000, and ported to Linux, with the first distribution support appearing in 2001. It is available in almost all Linux |
Development of XFS was started by [[Silicon Graphics]] in [[1993]], with first deployment being seen on IRIX 5.3 in [[1994]]. The filesystem was released under the [[GNU General Public License]] in May [[2000]], and ported to Linux, with the first distribution support appearing in 2001. It is available in almost all [[GNU/Linux distribution]]s today. |
||
XFS was first merged into mainline [[Linux (kernel)|Linux]] in version 2.4, making it almost universally available on Linux systems. Installation programs for the [[Arch Linux|Arch]], [[Debian]], [[Fedora (operating system)|Fedora]], [[openSUSE]], [[Gentoo Linux|Gentoo]], [[Kate OS]], [[Mandriva]], [[Slackware]], [[Ubuntu Linux|Ubuntu]], [[VectorLinux]] and [[Zenwalk]] [[Linux distributions]] all offer XFS as a choice of filesystem, but few of these let the user create XFS for the /boot filesystems due to deficiencies and unpredictable behavior in [[GNU GRUB|GRUB]], often the default bootloader.<ref>[https://bugzilla.redhat.com/show_bug.cgi?id=250843 Redhat.com]</ref> [[FreeBSD]] gained read-only support for XFS in December 2005 and in June 2006 experimental write support was introduced; however this is supposed to be used only as an aid in migration from Linux, not to be used as a "main" filesystem. [[Red Hat Enterprise Linux]] 5.4 64 bit version has all needed kernel support but does not include command line |
XFS was first merged into mainline [[Linux (kernel)|Linux]] in version 2.4, making it almost universally available on Linux systems. Installation programs for the [[Arch Linux|Arch]], [[Debian]], [[Fedora (operating system)|Fedora]], [[openSUSE]], [[Gentoo Linux|Gentoo]], [[Kate OS]], [[Mandriva]], [[Slackware]], [[Ubuntu Linux|Ubuntu]], [[VectorLinux]] and [[Zenwalk]] [[Linux distributions]] all offer XFS as a choice of filesystem, but few of these let the user create XFS for the [[/boot]] filesystems due to deficiencies and [[unpredictable behavior]] in [[GNU GRUB|GRUB]], often the default bootloader.<ref>[https://bugzilla.redhat.com/show_bug.cgi?id=250843 Redhat.com]</ref> [[FreeBSD]] gained [[read-only]] support for XFS in December 2005 and in June 2006 experimental write support was introduced; however this is supposed to be used only as an aid in migration from Linux, not to be used as a "main" filesystem. [[Red Hat Enterprise Linux]] 5.4 64 bit version has all needed kernel support but does not include [[command line tool]]s for creating and using the system, but the tools from [[CentOS]] work. The motivation is that the system port may not yet be stable enough.<ref>[https://bugzilla.redhat.com/show_bug.cgi?id=521173 Red Hat Linux Bugzilla entry on XFS implementation]</ref> |
||
==Specifications== |
==Specifications== |
||
Line 39: | Line 39: | ||
===Journaling=== |
===Journaling=== |
||
[[Journaling file system|Journaling]] is an approach to guaranteeing file system consistency even in presence of power |
[[Journaling file system|Journaling]] is an approach to guaranteeing [[file system consistency]] even in presence of [[power failure]]s or [[system crash]]es. XFS provides journaling for file system metadata, where file system updates are first written to a serial journal before the actual disk blocks are updated. The journal is a circular buffer of disk blocks that is never read in normal filesystem operation. The XFS journal is limited to a maximum size of both 64k blocks and 128MB with the minimum size dependent upon a calculation of the filesystem block size and directory block size. Placing the journal on an external device larger than the maximum journal size will cause the extra space to be unused. It can be stored within the data section of the filesystem (an internal log), or on a separate device to minimize disk contention. On XFS the journal contains “logical” entries that describe at a high level what operations are being performed (as opposed to a “physical” journal that stores a copy of the blocks modified during each transaction). Journal updates are performed asynchronously to avoid incurring a performance penalty. In the event of a system crash, operations immediately prior to the crash can be redone using data in the journal, which allows XFS to retain file system consistency. Recovery is performed automatically at file system mount time, and the recovery speed is independent of the size of the file system. Where recently modified data has not been flushed to disk before a system crash, XFS ensures that any unwritten data blocks are zeroed on reboot, obviating any possible security issues arising from residual data (as far as access through the filesystem interface is concerned, as distinct from accessing the raw device or raw hardware). |
||
===Allocation groups=== |
===Allocation groups=== |
||
XFS filesystems are internally partitioned into ''allocation groups'', which are equally sized linear regions within the file system. |
XFS filesystems are internally partitioned into ''allocation groups'', which are equally sized linear regions within the file system. [[File]]s and directories can span allocation groups. Each allocation group manages its own [[inode]]s and free space separately, providing scalability and parallelism — multiple threads and processes can perform I/O operations on the same filesystem simultaneously. This architecture helps to optimise parallel I/O performance on multiprocessor or multicore systems, as metadata updates are also parallelizable. The internal [[partitioning]] provided by allocation groups can be especially beneficial when the file system spans multiple physical devices, allowing for optimal usage of throughput of the underlying storage components. |
||
===Striped allocation=== |
===Striped allocation=== |
Revision as of 14:20, 19 June 2011
Developer(s) | Silicon Graphics Inc. |
---|---|
Full name | XFS |
Introduced | 1994 with IRIX v5.3 |
Structures | |
Directory contents | B+ trees |
File allocation | B+ trees |
Limits | |
Max volume size | 16 exabytes |
Max file size | 8 exabytes (minus 1 byte) |
Max filename length | 255 bytes |
Allowed filename characters | All bytes except NUL ('\0') and '/' |
Features | |
Dates recorded | Yes |
Date resolution | 1ns |
Attributes | Yes |
File system permissions | Yes |
Transparent compression | No |
Transparent encryption | No (provided at the block device level) |
Data deduplication | No |
Other | |
Supported operating systems | IRIX, Linux, FreeBSD (experimental) |
XFS is a high-performance journaling file system created by Silicon Graphics, originally for their IRIX operating system and later ported to the Linux kernel. XFS is particularly proficient at handling large files and at offering smooth data transfers.
History
Development of XFS was started by Silicon Graphics in 1993, with first deployment being seen on IRIX 5.3 in 1994. The filesystem was released under the GNU General Public License in May 2000, and ported to Linux, with the first distribution support appearing in 2001. It is available in almost all GNU/Linux distributions today.
XFS was first merged into mainline Linux in version 2.4, making it almost universally available on Linux systems. Installation programs for the Arch, Debian, Fedora, openSUSE, Gentoo, Kate OS, Mandriva, Slackware, Ubuntu, VectorLinux and Zenwalk Linux distributions all offer XFS as a choice of filesystem, but few of these let the user create XFS for the /boot filesystems due to deficiencies and unpredictable behavior in GRUB, often the default bootloader.[1] FreeBSD gained read-only support for XFS in December 2005 and in June 2006 experimental write support was introduced; however this is supposed to be used only as an aid in migration from Linux, not to be used as a "main" filesystem. Red Hat Enterprise Linux 5.4 64 bit version has all needed kernel support but does not include command line tools for creating and using the system, but the tools from CentOS work. The motivation is that the system port may not yet be stable enough.[2]
Specifications
Capacity
XFS is a 64-bit file system. It supports a maximum file system size of 8 exbibytes minus one byte, though this is subject to block limits imposed by the host operating system. On 32-bit Linux systems, this limits the file and file system sizes to 16 tebibytes.
Journaling
Journaling is an approach to guaranteeing file system consistency even in presence of power failures or system crashes. XFS provides journaling for file system metadata, where file system updates are first written to a serial journal before the actual disk blocks are updated. The journal is a circular buffer of disk blocks that is never read in normal filesystem operation. The XFS journal is limited to a maximum size of both 64k blocks and 128MB with the minimum size dependent upon a calculation of the filesystem block size and directory block size. Placing the journal on an external device larger than the maximum journal size will cause the extra space to be unused. It can be stored within the data section of the filesystem (an internal log), or on a separate device to minimize disk contention. On XFS the journal contains “logical” entries that describe at a high level what operations are being performed (as opposed to a “physical” journal that stores a copy of the blocks modified during each transaction). Journal updates are performed asynchronously to avoid incurring a performance penalty. In the event of a system crash, operations immediately prior to the crash can be redone using data in the journal, which allows XFS to retain file system consistency. Recovery is performed automatically at file system mount time, and the recovery speed is independent of the size of the file system. Where recently modified data has not been flushed to disk before a system crash, XFS ensures that any unwritten data blocks are zeroed on reboot, obviating any possible security issues arising from residual data (as far as access through the filesystem interface is concerned, as distinct from accessing the raw device or raw hardware).
Allocation groups
XFS filesystems are internally partitioned into allocation groups, which are equally sized linear regions within the file system. Files and directories can span allocation groups. Each allocation group manages its own inodes and free space separately, providing scalability and parallelism — multiple threads and processes can perform I/O operations on the same filesystem simultaneously. This architecture helps to optimise parallel I/O performance on multiprocessor or multicore systems, as metadata updates are also parallelizable. The internal partitioning provided by allocation groups can be especially beneficial when the file system spans multiple physical devices, allowing for optimal usage of throughput of the underlying storage components.
Striped allocation
If an XFS filesystem is to be created on a striped RAID array, a stripe unit can be specified when the file system is created. This maximises throughput by ensuring that data allocations, inode allocations and the internal log (journal) are aligned with the stripe unit.
Extent based allocation
Blocks used in files stored on XFS filesystems are managed with variable length extents where one extent describes one or more contiguous blocks. This can shorten the list considerably compared to file systems that list all blocks used by a file individually. Also many file systems manage space allocation with one or more block oriented bitmaps — in XFS these structures are replaced with an extent oriented structure consisting of a pair of B+ trees for each filesystem allocation group (AG). One of the B+ trees is indexed by the length of the free extents, while the other is indexed by the starting block of the free extents. This dual indexing scheme allows for highly efficient location of free extents for file system operations.
Variable block sizes
The file system block size represents the minimum allocation unit. XFS allows file systems to be created with block sizes ranging between 512 bytes and 64 kilobytes, allowing the file system to be tuned for the expected use. When many small files are expected a small block size would typically maximize capacity, but for a system dealing mainly with large files, a larger block size can provide a performance advantage.
Delayed allocation
XFS makes use of lazy evaluation techniques for file allocation. When a file is written to the buffer cache, rather than allocating extents for the data, XFS simply reserves the appropriate number of file system blocks for the data held in memory. The actual block allocation occurs only when the data is finally flushed to disk. This improves the chance that the file will be written in a contiguous group of blocks, reducing fragmentation problems and increasing performance.
Sparse files
XFS provides a 64-bit sparse address space for each file, which allows both for very large file sizes, and for holes within files for which no disk space is allocated. As the file system uses an extent map for each file, the file allocation map size is kept small. Where the size of the allocation map is too large for it to be stored within the inode, the map is moved into a B+ tree which allows for rapid access to data anywhere in the 64-bit address space provided for the file.
Extended attributes
XFS provides multiple data streams for files through its implementation of extended attributes. These allow the storage of a number of name/value pairs attached to a file. Names are null-terminated printable character strings of up to 256 bytes in length, while their associated values can contain up to 64 KB of binary data. They are further subdivided into two namespaces, root
and user
. Extended attributes stored in the root namespace can be modified only by the superuser, while attributes in the user namespace can be modified by any user with permission to write to the file. Extended attributes can be attached to any kind of XFS inode, including symbolic links, device nodes, directories, etc. The attr
program can be used to manipulate extended attributes from the command line, and the xfsdump
and xfsrestore
utilities are aware of them and will back up and restore their contents. Most other backup systems are not aware of extended attributes.
Direct I/O
For applications requiring high throughput to disk, XFS provides a direct I/O implementation that allows non-cached I/O directly to userspace. Data is transferred between the application's buffer and the disk using DMA, which allows access to the full I/O bandwidth of the underlying disk devices.
Guaranteed-rate I/O
The XFS guaranteed-rate I/O system provides an API that allows applications to reserve bandwidth to the filesystem. XFS will dynamically calculate the performance available from the underlying storage devices, and will reserve bandwidth sufficient to meet the requested performance for a specified time. This feature is unique to the XFS file system. Guarantees can be hard or soft, representing a trade off between reliability and performance, though XFS will only allow hard guarantees if the underlying storage subsystem supports it. This facility is most used by real-time applications, such as video-streaming.
DMAPI
XFS implements the DMAPI interface to support Hierarchical Storage Management. As of October 2010, the Linux implementation of XFS supports the required on-disk metadata for DMAPI implementation, but the kernel support is reportedly not in a usable state. For some time, SGI hosted a kernel tree which included the DMAPI hooks, but this support has not been adequately maintained, though kernel developers have stated an intention to bring it up to date.[3]
Snapshots
XFS does not provide direct support for snapshots, as it expects the snapshot process to be implemented by the volume manager. Taking a snapshot of an XFS filesystem involves freezing I/O to the filesystem using the xfs_freeze
utility, having the volume manager perform the actual snapshot, and then unfreezing I/O to resume normal operations. The snapshot can then be mounted read-only for backup purposes. XFS releases on IRIX incorporated an integrated volume manager called XLV. This volume manager has not been ported to Linux and XFS works with standard LVM instead. In recent Linux kernels, the xfs_freeze
functionality is implemented in the VFS layer, and happens automatically when the Volume Manager's snapshot functionality is invoked. This was once a valuable advantage as Ext3 system could not be suspended[4] and volume manager was unable to create a consistent 'hot' snapshot to backup a heavily busy database.[5] Fortunately this is no longer the case. Since Linux 2.6.29 ext3, ext4, gfs2 and jfs have the freeze feature as well.[6]
Online defragmentation
Although the extent-based nature of XFS and the delayed allocation strategy it uses significantly improves the file system's resistance to fragmentation problems, XFS provides a filesystem defragmentation utility (xfs_fsr
, short for XFS filesystem reorganizer) that can defragment the files on a mounted and active XFS filesystem.[7]
Online resizing
XFS provides the xfs_growfs
utility to perform online resizing of XFS file systems. XFS filesystems can be grown provided there is remaining unallocated space on the device holding the filesystem. This feature is typically used in conjunction with volume management, as otherwise the partition holding the filesystem will need enlarging separately. XFS partitions cannot (as of August 2010) be shrunk in place,[8] although several possible workarounds have been discussed.[9]
Native backup/restore utilities
XFS provides the xfsdump
and xfsrestore
utilities to aid in backup of data held on XFS file systems. The xfsdump
utility backs up an XFS filesystem in inode order, and in contrast to traditional UNIX file systems which must be unmounted before dumping to guarantee a consistent dump image, XFS file systems can be dumped while the file system is in use. This is not the same as a snapshot since files are not frozen during the dump. XFS dumps and restores are also resumable, and can be interrupted without difficulty. The multi-threaded operation of xfsdump
provides high performance of backup operations by splitting the dump into multiple streams, which can be sent to different dump destinations. The multi stream capabilities have not been fully ported to Linux yet, however.
Atomic disk quotas
Quotas for XFS filesystems are turned on when initially mounted; this fixes a race window that is present with most other filesystems that first require to be mounted and where no quotas are enforced until quotaon(8) is called.
Performance considerations
Write barriers
XFS filesystems mount by default with "write barriers" enabled. This feature will cause the write back cache of the underlying storage device to be flushed at appropriate times, particularly on write operations to the XFS log. This feature is intended to assure filesystem consistency, and its implementation is device specific - not all underlying hardware will support cache flush requests. When an XFS filesystem is used on a logical device provided by a hardware RAID controller with battery backed cache, this feature can cause significant performance degradation, as the filesystem code is not aware that the cache is nonvolatile, and if the controller honors the flush requests, data will be written to physical disk more often than necessary. To avoid this problem, where the data in the device cache is protected from power failure or other host problems, the filesystem should be mounted with the "nobarrier" option.
Journal placement
By default, XFS filesystems are created with an "internal" log, which places the filesystem journal on the same block device as the filesystem data. Filesystem writes are preceded by metadata updates to the journal, which can be a cause of disk contention. Under most workloads, the level of contention caused is too low to impact performance, but random-write heavy workloads, such as those seen on busy database servers, can suffer from sub-optimal performance as a result of this I/O contention. An additional factor which can increase the severity of this problem is that writes to the journal are committed synchronously—they must complete successfully before the associated write operation can begin.
Where optimum filesystem performance is required, XFS provides the option of placing the log on a separate physical device, with its own I/O path. This requires little physical space, and if a low-latency path can be provided for synchronous writes, it can provide significant performance enhancements to the operation of the filesystem. The required performance characteristics make this a suitable candidate for the use of an SSD device, or a RAID system with write-back cache, though the latter can reduce data safety in the event of power problems. The use of an external log simply requires the filesystem to be mounted with the logdev
option, indicating a suitable journal device.
Disadvantages
- An XFS file system cannot be shrunk.
- Metadata operations in XFS have historically been slower than with other file systems, yielding poor performance with operations such as mass deletions of large numbers of files. This metadata performance issue has been addressed by code created by Red Hat XFS developer Dave Chinner. The feature, a mount option known as "delayed logging", increases the performance of metadata operations by many orders of magnitude, by pushing them almost entirely into memory. The patch was included in the mainline kernel as an experimental feature in 2.6.35, is a stable feature of 2.6.37, and is the default journal logging method in Linux 2.6.39. Early testing shows performance to now be similar to EXT4 at low thread counts, and superior to EXT4 at high thread counts. See: http://xfs.org/index.php/Improving_Metadata_Performance_By_Reducing_Journal_Overhead and http://oss.sgi.com/archives/xfs/2010-05/msg00329.html
See also
- Comparison of file systems
- CXFS, the clustered form of XFS
- List of file systems
References
This article includes a list of references, related reading, or external links, but its sources remain unclear because it lacks inline citations. (April 2009) |
External links
- XFS.org, community wiki
- SGI.com, a high-performance journaling filesystem
- IBM.com, Advanced filesystem implementor's guide - Introducing XFS
- IBM.com, Advanced filesystem implementor's guide - Deploying XFS
- Madpenguin.org, File System Design part 1: XFS by Narayan Newton on madpenguin.org