Which filesystem for 16TB under CentOS 5.5

centos5filesystemspartition

We have a PowerVault NX3100 from Dell here. I have to install a Linux Server on this system and don't know which filesystem I should use and which partition layout would be useable for the RAID with 2×8 2TB disks (effectively 14TB, RAID 5).

I know that ext3 makes problems with fss > 2TB when used with default blocksize.

I tend to use XFS with two partitions of 8TB. Would you see this as a good choice? Is it possible
(or recommandable) to use LVM for this system? Should I use only one or several fss? I would like to minimize the times for fsck or check_xfs.

Best Answer

Definitely XFS. XFS initialisation is much faster, performance is excellent, and XFS has been use for multi-terabytes volumes for ages. I currently support 230 machines with 8 to 76 TB XFS volumes. Tens are built with two or more RAID volumes aggregated through LVM without problem, so this is safe enough.

xfs_check speed depends mostly on the number of files. For typical large volumes (30 TB), xfs_repair takes less than 15 minutes given that the system has enough memory (older xfs_repair tends to gobbles tons of RAM), like 8 GB or more.

Related Topic