All of lore.kernel.org
 help / color / mirror / Atom feed
* reiserfs for cluster
@ 2003-05-06 14:13 Juergen Waiblinger
  2003-05-06 14:57 ` Ookhoi
  2003-05-06 21:01 ` Gerrit Hannaert
  0 siblings, 2 replies; 4+ messages in thread
From: Juergen Waiblinger @ 2003-05-06 14:13 UTC (permalink / raw)
  To: reiserfs-list

Hello,

we are running different beowulf clusters and the storage amount increases 
all the time. Until now we have been using Veritas Clusterfilesystem, but 
for different reasons we want to go for an other solution. As we are using 
reiserfs quite happily on the desktops we thought about using this for the 
storagesubsystem attached to the masterserver of the cluster.
there will only be sun and linux machines accessing the files but there 
will be concurrent file access.
Has anybody tried this or could give some other solutions
Any information will be appreciated

TIA will summarize to the list


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: reiserfs for cluster
  2003-05-06 14:13 reiserfs for cluster Juergen Waiblinger
@ 2003-05-06 14:57 ` Ookhoi
  2003-05-06 17:09   ` Russell Coker
  2003-05-06 21:01 ` Gerrit Hannaert
  1 sibling, 1 reply; 4+ messages in thread
From: Ookhoi @ 2003-05-06 14:57 UTC (permalink / raw)
  To: Juergen Waiblinger; +Cc: reiserfs-list

Juergen Waiblinger wrote (ao):
> we are running different beowulf clusters and the storage amount
> increases all the time. Until now we have been using Veritas
> Clusterfilesystem, but for different reasons we want to go for an
> other solution. As we are using reiserfs quite happily on the desktops
> we thought about using this for the storagesubsystem attached to the
> masterserver of the cluster.
> there will only be sun and linux machines accessing the files but
> there will be concurrent file access.
> Has anybody tried this or could give some other solutions Any
> information will be appreciated

With the current 300GB sata disks, 3ware controllers and a full tower
which can handle 20 disks you can create a 5.3TB raid. mkreiserfs it,
stress-test it for a while and see if it works for you. Also try xfs and
compare it with reiserfs.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: reiserfs for cluster
  2003-05-06 14:57 ` Ookhoi
@ 2003-05-06 17:09   ` Russell Coker
  0 siblings, 0 replies; 4+ messages in thread
From: Russell Coker @ 2003-05-06 17:09 UTC (permalink / raw)
  To: ookhoi, Juergen Waiblinger; +Cc: reiserfs-list

On Wed, 7 May 2003 00:57, Ookhoi wrote:
> Juergen Waiblinger wrote (ao):
> > we are running different beowulf clusters and the storage amount
> > increases all the time. Until now we have been using Veritas
> > Clusterfilesystem, but for different reasons we want to go for an
> > other solution. As we are using reiserfs quite happily on the desktops
> > we thought about using this for the storagesubsystem attached to the
> > masterserver of the cluster.
> > there will only be sun and linux machines accessing the files but
> > there will be concurrent file access.
> > Has anybody tried this or could give some other solutions Any
> > information will be appreciated
>
> With the current 300GB sata disks, 3ware controllers and a full tower
> which can handle 20 disks you can create a 5.3TB raid. mkreiserfs it,
> stress-test it for a while and see if it works for you. Also try xfs and
> compare it with reiserfs.

From Juergen's description I get the impression that he has a clustered file 
system.  A clustered file system such as GFS is more what he's asking for:
http://www.sistina.com/solutions_fileserve.html

However ReiserFS in a configuration such as you describe may be a viable 
option and will certainly be a lot cheaper.  I believe that ReiserFS does NFS 
well now and it should be a good option.

-- 
http://www.coker.com.au/selinux/   My NSA Security Enhanced Linux packages
http://www.coker.com.au/bonnie++/  Bonnie++ hard drive benchmark
http://www.coker.com.au/postal/    Postal SMTP/POP benchmark
http://www.coker.com.au/~russell/  My home page


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: reiserfs for cluster
  2003-05-06 14:13 reiserfs for cluster Juergen Waiblinger
  2003-05-06 14:57 ` Ookhoi
@ 2003-05-06 21:01 ` Gerrit Hannaert
  1 sibling, 0 replies; 4+ messages in thread
From: Gerrit Hannaert @ 2003-05-06 21:01 UTC (permalink / raw)
  To: reiserfs-list; +Cc: Juergen Waiblinger

I've tried something like this on a SAN a while ago, using ext3, but
perhaps the results would not be so different using reiserfs. The
situation we were looking at involved flat-file database updates which
would occur only once every day or even less than that.

Obviously the major issue is who has write-access; but things seem to
work if:
- one machine does the writes, after which the other machines will need
to re-mount the filesystem (probably works best if writes affect new
files, and are not appends/modifications...). Otherwise new files will
not show up because this data is cached (I expect someone else can give
some better low-level explanation and possible workarounds)...
- filesystem on read-only machines is mounted with journaling disabled,
and the noatime,ro options (updating access times are writes, too).
Otherwise the filesystem will not be in a consistent state, and will be
checked every time you mount it.

There may be other alternatives, but this is a simple solution if your
'write demands' are not too high. I haven't done much performance or
scalability tests so I don't know if this method is preferrable over NFS
and such (but it's so much cooler!).

Cheers,

- Gerrit


Juergen Waiblinger wrote:

> Hello,
>
> we are running different beowulf clusters and the storage amount
> increases all the time. Until now we have been using Veritas
> Clusterfilesystem, but for different reasons we want to go for an
> other solution. As we are using reiserfs quite happily on the desktops
> we thought about using this for the storagesubsystem attached to the
> masterserver of the cluster.
> there will only be sun and linux machines accessing the files but
> there will be concurrent file access.
> Has anybody tried this or could give some other solutions
> Any information will be appreciated
>
> TIA will summarize to the list
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-05-06 21:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-06 14:13 reiserfs for cluster Juergen Waiblinger
2003-05-06 14:57 ` Ookhoi
2003-05-06 17:09   ` Russell Coker
2003-05-06 21:01 ` Gerrit Hannaert

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.