JFS (file system)

From Wikipedia, the free encyclopedia

JFS
Developer(s)IBM et al.
Full nameIBM Journaled File System
Introduced1990 and 1999 with JFS1 in AIX 3.1 and JFS in OS/2 4.5
Partition IDs0x35 (MBR)
Structures
Directory contentsB+ tree
File allocationBitmap/extents
Limits
Max volume size32 × 250 bytes (32 PiB)
Max file size4 × 250 bytes (4 PiB)
Max no. of filesNo limit defined
Max filename length255 bytes
Allowed filename
characters
Any Unicode except NUL
Features
Dates recordedModification (mtime), attribute modification (ctime), access (atime)
Date resolution1 ns
ForksYes
File system
permissions
Unix permissions, ACLs
Transparent
compression
Only in JFS1 on AIX
Transparent
encryption
No (provided at the block device level)
Data deduplicationNo
Other
Supported
operating systems
AIX, OS/2, Linux, eComStation, ArcaOS

Journaled File System (JFS) is a 64-bit journaling file system created by IBM. There are versions for AIX, OS/2, eComStation, ArcaOS and Linux operating systems. The latter is available as free software under the terms of the GNU General Public License (GPL). HP-UX has another, different filesystem named JFS that is actually an OEM version of Veritas Software's VxFS.

In the AIX operating system, two generations of JFS exist, which are called JFS (JFS1) and JFS2 respectively.[1][2] In other operating systems, such as OS/2 and Linux, only the second generation exists and is called simply JFS.[3] This should not be confused with JFS in AIX that actually refers to JFS1.

History[edit]

IBM introduced JFS with the initial release of AIX version 3.1 in February 1990. This file system, now called JFS1 on AIX, was the premier file system for AIX over the following decade and was installed in thousands or millions of customers' AIX systems. Historically, the JFS1 file system is very closely tied to the memory manager of AIX,[1] which is a typical design for a file system supporting only one operating system. JFS was one of the first file systems to support Journaling

In 1995, work began to enhance the file system to be more scalable and to support machines that had more than one processor. Another goal was to have a more portable file system, capable of running on multiple operating systems. After several years of designing, coding, and testing, the new JFS was first shipped in OS/2 Warp Server for eBusiness in April 1999, and then in OS/2 Warp Client in October 2000. In December 1999, a snapshot of the original OS/2 JFS source was granted to the open source community and work was begun to port JFS to Linux. The first stable release of JFS for Linux appeared in June 2001.[3] The JFS for Linux project is maintained by a small group of contributors known as the JFS Core Team.[4] This release of sources also worked to form the basis of a re-port back to OS/2 of the open-source JFS.

In parallel with this effort, some of the JFS development team returned to the AIX Operating System Development Group in 1997 and started to move this new JFS source base to the AIX operating system. In May 2001, a second journaled file system, Enhanced Journaled File System (JFS2), was made available for AIX 5L.[1][3]

Early in 2008 there was speculation that IBM is no longer interested in maintaining JFS and thus it should not be used in production environments.[5] However, Dave Kleikamp, a member of the IBM Linux Technology Center and JFS Core Team,[4] explained that they still follow changes in the Linux kernel and try to fix potential software bugs. He went on to add that certain distributions expect a larger resource commitment from them and opt not to support the filesystem.[6]

In 2012, TRIM command support for solid-state drives was added to JFS.[7]

Features[edit]

JFS supports the following features.[8][9]

Journal[edit]

JFS is a journaling file system. Rather than adding journaling as an add-on feature like in the ext3 file system, it was implemented from the start. The journal can be up to 128 MB. JFS journals metadata only, which means that metadata will remain consistent but user files may be corrupted after a crash or power loss. JFS's journaling is similar to XFS in that it only journals parts of the inode.[10]

B+ tree[edit]

JFS uses a B+ tree to accelerate lookups in directories. JFS can store 8 entries of a directory in the directory's inode before moving the entries to a B+ tree. JFS also indexes extents in a B+ tree.

Dynamic inode allocation[edit]

JFS dynamically allocates space for disk inodes as necessary. Each inode is 512 bytes. 32 inodes are allocated on a 16 kB Extent.

Extents[edit]

JFS allocates files as an extent. An extent is a variable-length sequence of Aggregate blocks. An extent may be located in several allocation groups. To solve this the extents are indexed in a B+ tree for better performance when locating the extent locations.

Compression[edit]

Compression is supported only in JFS1 on AIX and uses a variation of the LZ algorithm. Because of high CPU usage and increased free space fragmentation, compression is not recommended for use other than on a single user workstation or off-line backup areas.[2][11]

Concurrent input / output (CIO)[edit]

JFS normally applies read-shared, write-exclusive locking to files, which avoids data inconsistencies but imposes write serialization at the file level. The CIO option disables this locking. Applications such as relational databases which maintain data consistency themselves can use this option to largely eliminate filesystem overheads.[12]

Allocation groups[edit]

JFS uses allocation groups. Allocation groups divide the aggregate space into chunks. This allows JFS to use resource allocation policies to achieve great I/O performance. The first policy is to try to cluster disk blocks and disk inodes for related data in the same AG in order to achieve good locality for the disk. The second policy is to distribute unrelated data throughout the file system in an attempt to minimize free-space fragmentation. When there is an open file JFS will lock the AG the file resides in and only allow the open file to grow. This reduces fragmentation as only the open file can write to the AG.

Superblocks[edit]

The superblock maintains information about the entire file system and includes the following fields:

  • Size of the file system
  • Number of data blocks in the file system
  • A flag indicating the state of the file system
  • Allocation group sizes
  • File system block size

On Linux[edit]

In the Linux operating system, JFS is supported with the kernel module (since the kernel version 2.4.18pre9-ac4) and the complementary userspace utilities packaged under the name JFSutils. Most Linux distributions support JFS unless it is specifically removed due to space restrictions, such as on live CDs.[citation needed]

According to benchmarks of the available filesystems for Linux, JFS is fast and reliable, with consistently good performance under different kinds of load.[13]

Actual usage of JFS in Linux is uncommon, as ext4 typically offers better performance[citation needed]. JFS does have a niche role in Linux: it offers a case-insensitive mount option, unlike most other Linux file systems.[14]

There are also potential problems with JFS, such as its implementation of journal writes. They can be postponed until there is another trigger—potentially indefinitely, which can cause data loss over a theoretically infinite timeframe.[15]

See also[edit]

References[edit]

  1. ^ a b c "A Mini-FAQ for JFS". JFS for Linux project.
  2. ^ a b "Comparison of JFS1 and JFS2 on AIX". IBM.
  3. ^ a b c "Interview with the People Behind JFS, ReiserFS & XFS".
  4. ^ a b "JFS for Linux". JFS.SourceForge.net. Retrieved August 26, 2020.
  5. ^ "Re: which to use: ext3, JFS, XFS, ReiserFS?". Archived from the original on March 3, 2016. Retrieved March 31, 2008.
  6. ^ SourceForge.net: jfs-discussion
  7. ^ "TRIM support for JFS Filesystem".
  8. ^ "JFS overview". Steve Best, IBM. Archived from the original on January 29, 2008. Retrieved January 9, 2008.
  9. ^ "JFS Layout" (PDF). Steve Best, IBM. Retrieved May 1, 2008.
  10. ^ David Kleikamp. "JFS journal". OSDIR. Archived from the original on March 3, 2016. Retrieved July 7, 2008.
  11. ^ "AIX Wiki: JFS". IBM. Archived from the original on May 28, 2006.
  12. ^ "Improving Database Performance With AIX Concurrent I/O - White Paper" (PDF). IBM.com. IBM.
  13. ^ "9-Way File-System Comparison With A SSD On The Linux 3.17 Kernel". Phoronix.com. Retrieved July 7, 2020.
  14. ^ "jfs_mkfs: create a JFS formatted partition - Linux Man Pages (8)". SysTutorials.com. Retrieved July 7, 2020.
  15. ^ Analysis and Evolution of Journaling File Systems - V. Prabhakaran and others 2013-06

External links[edit]