Which Linux filesystems, in RHEL 9, support journaling?
@Trevor both ext4 and XFS
journaling employ write handling by recording changes in a journal before applying them to the actual filesystem, where original data is subsequently overwritten. This process ensures data consistency by recording metadata changes and replaying them if necessary. Performance incurs minimal overhead, varying with the journaling mode, while space utilization remains efficient due to the journal's typical size being in megabytes. Recovery times are fast, as the journal can be replaced instantly. Notably, journaling itself does not provide built-in support for features such as compression or deduplication.
Red Hat
Learning Community
A collaborative learning environment, enabling open source skill development.