Oh, I just wanted to chime in and say that, for my own dedicated server, I'm running a hardware RAID controller (Adaptec 5405 if you're interested) with four 1.5TB Seagate SATA disks, on Ubuntu 10.04.1 Server. I'm using the XFS filesystem due to the way it is tuned for smooth I/O performance and parallel access; I don't need the raw throughput of ext4, but I do need data safety and "fair" scheduling of I/O across processes, two things XFS is very good at.
I was using ext4 on Software RAID5 before, but I realized my mistake when I was able to quadruple my write performance by moving to Hardware RAID10 and XFS.
I don't think I will be upgrading anything as low-level as the filesystem on my server for at least a year (I tolerated the ext4 for a year before I tossed it), but if I ever do, I will definitely have to re-evaluate my options and see if btrfs has matured or if native ZFS on Linux is a reality.
I was using ext4 on Software RAID5 before, but I realized my mistake when I was able to quadruple my write performance by moving to Hardware RAID10 and XFS.
I don't think I will be upgrading anything as low-level as the filesystem on my server for at least a year (I tolerated the ext4 for a year before I tossed it), but if I ever do, I will definitely have to re-evaluate my options and see if btrfs has matured or if native ZFS on Linux is a reality.
Comment