From 88501798f77c9afd4623763c59f2608b2de8a9cf Mon Sep 17 00:00:00 2001 From: Natalia Ivakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Tue, 9 Sep 2025 14:05:49 +0200 Subject: [PATCH] Refine filesystem requirements (#2578) --- modules/ROOT/pages/installation/requirements.adoc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/ROOT/pages/installation/requirements.adoc b/modules/ROOT/pages/installation/requirements.adoc index 26326e297..5371dfccb 100644 --- a/modules/ROOT/pages/installation/requirements.adoc +++ b/modules/ROOT/pages/installation/requirements.adoc @@ -115,9 +115,12 @@ For more information on Red Hat Enterprise Linux Life Cycle, refer to their link [[deployment-requirements-filesystem]] == Filesystem -For proper ACID behavior, the filesystem must support flush (_fsync_, _fdatasync_). -Since databases can put a high and consistent load on a storage system for a long time, it is recommended to use a file system that has good aging characteristics. -The EXT4 and XFS are the **only** supported file systems. +For proper ACID behavior, the filesystem must support flush operations such as _fsync_ and _fdatasync_. +Since databases can place a high and consistent load on a storage system for long periods, it is recommended to use a filesystem with strong aging characteristics. + +On Linux systems, a POSIX-compliant filesystem is required. +Network shares such as NFS do not meet this POSIX requirement. +The only supported filesystems on Linux are EXT4 and XFS. See xref:performance/linux-file-system-tuning.adoc[Linux file system tuning] for details on how to configure the filesystem in Linux for optimal performance.