I have a lot of spare intel linux servers laying around (hundreds) and want to use them for a distributed file system in a web hosting and file sharing environment. This isn't for a HPC application, so high performance isn't critical. The main requirement is high availability, if one server goes offline, the data stored on it's hard drives is still available from other nodes. It must run over TCP/IP and provide standard POSIX file permissions.

I've looked at the following:

  • Lustre (http://wiki.lustre.org/index.php?title=Main_Page): Comes really close, but it doesn't provide redundancy for data on a node. You must make the data HA using RAID or DRBD. Supported by Sun and Open Source, so it should be around for a while

  • gfarm (http://datafarm.apgrid.org/): Looks like it provides the redundancy but at the cost of complexity and maintainability. Not as well supported as Lustre.

Does anyone have any experience with these or any other systems that might work?

link|improve this question
feedback

8 Answers

up vote 9 down vote accepted

check also GlusterFS

link|improve this answer
feedback

Gluster is getting quite a lot of press at the moment:

http://www.gluster.org/

link|improve this answer
1  
Isn't this a duplicate? – dpavlin Jul 20 '11 at 13:03
2  
@dpavlin - does it matter if it's a duplicate? Yes, the answerer shouldn't have added it since it was already there, but downvoting just because it's a duplicate seems wrong – warren Jul 20 '11 at 14:17
feedback

Ceph looks to be a promising new-ish entry into the arena. The site claims it's not ready for production use yet though.

link|improve this answer
feedback

I read a lot about distributed filesystems and I think FhGFS is the best.

http://www.fhgfs.com/

It worth a try. See more about it at:

http://www.fhgfs.com/wiki/

link|improve this answer
feedback

In my opinion, the best file system for Linux is MooseFS , it's quite new, but I had an opportunity to compare it with Ceph and Lustre and I say for sure that MooseFS is the best one.

link|improve this answer
feedback

Lustre has been working for us. It's not perfect but it's the only thing we have tried that has not broken down over load. We still get LBUGS from time to time and dealing with 100TB + file systems is never easy but the Lustre system has worked and increased both performance and availability.

link|improve this answer
feedback

If not someone forces you to use it, I would also highly recommend using anything else than Lustre. From what I hear from others and what also gave myself nightmares for quite some time is the fact that Lustre quite easily breaks down in all kinds of situations. And if only a single client in the system breaks down, it puts itself into an endless do_nothing_loop mode typically while holding some important global lock - so the next time another client tries to access the same information, it will also hang. Thus, you often end up rebooting the whole cluster, which I guess is something you would try to avoid normally ;)

Modern parallel file systems like FhGFS (http://www.fhgfs.com) are way more robust here and also allow you to do nice things like running server and client components on the same machines (though built-in HA features are still under development, as someone from their team told me, but their implementation is going to be pretty awesome from what I've heard).

link|improve this answer
fhghfs, from the people who gave us the mp3 patent? – Amigable Clark Kant Oct 24 '11 at 14:44
feedback

Have you looked at Red Hat's Global Filesystem? http://www.redhat.com/gfs

Left Hand Networks (http://lefthandnetworks.com) has a commercial option for this too (never used, but I've heard of them).

link|improve this answer
doesn't manage redundancy, AFAIK – Javier Nov 6 '08 at 16:22
OCFS2 is much easier to setup than GFS, but as first commented mentioned, it's not really redundant. – dpavlin Jul 20 '11 at 13:04
@dpavlin - so you downvoted me on this? – warren Jul 20 '11 at 14:18
@warren original question requested redundant file system, and since GFS and OCFS2 aren't redundant, downvoting seems to move answer at back of pile since it doesn't match question – dpavlin Aug 14 '11 at 19:32
1  
@warren SO doesn't let me remove downvote without editing original question. It seems to me that I will try to game a system if I edited answer just to remove downvote, but I do agree with your arguments. – dpavlin Aug 15 '11 at 11:06
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.