* [linux-lvm] Re: (reiserfs) Re: AIX JFS dual-mount
[not found] <Pine.LNX.4.10.10001280539550.13561-100000@home.suse.com>
@ 2000-01-29 8:14 ` Tracy R Reed
2000-01-29 18:36 ` Heinz Mauelshagen
[not found] ` <20000129095403.A24375@lenin.nu>
0 siblings, 2 replies; 6+ messages in thread
From: Tracy R Reed @ 2000-01-29 8:14 UTC (permalink / raw)
To: Chris Mason; +Cc: Russell Coker, reiserfs, gfs-devel, linux-lvm
On Fri, Jan 28, 2000 at 05:47:01AM -0800, Chris Mason wrote:
> On Fri, 28 Jan 2000, Russell Coker wrote:
> > A colleague told me that with AIX machines you can have two systems mount the
> > same file system, they then lock the bus whenever they need to do updates.
> >
> > Can this give usable write performance? If so is it worth considering?
> >
> Only if you also include some kind of lock manager. Without it, the two
> boxes would have no way if knowing if and when their caches are still
> valid.
>
> Once you have the lock manager, you don't need the full device
> lock, the systems can coordinate who is writing/reading which blocks.
>
> Anybody know exactly what AIX provides here?
Sounds similar to GFS (which I only recently learned about and find totally
amazing and plan to play with soon and perhaps implement it in a production
environment if it is all it's cracked up to be) only not over fibrechannel. It
does fine grain locking, manages cache coherency, the works:
www.globalfilesystem.org
I've been meaning to mention this to you guys and make sure everyone was aware
of it. It is a journalling filesystem while allows multiple hosts to mount the
same filesystem at the same time. I hope to see a lot of integration between
reiserfs, GFS, LVM, and MD in the future. There is currently a lot of overlap
in these areas. Linux needs all of these features to be smoothly integrated
and very stable if it is going to go head to head with the big boys someday.
--
Tracy Reed http://www.ultraviolet.org
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] Re: (reiserfs) Re: AIX JFS dual-mount
2000-01-29 8:14 ` [linux-lvm] Re: (reiserfs) Re: AIX JFS dual-mount Tracy R Reed
@ 2000-01-29 18:36 ` Heinz Mauelshagen
2000-01-29 20:27 ` Tracy R Reed
[not found] ` <20000129095403.A24375@lenin.nu>
1 sibling, 1 reply; 6+ messages in thread
From: Heinz Mauelshagen @ 2000-01-29 18:36 UTC (permalink / raw)
To: Tracy R Reed; +Cc: mge, linux-lvm
> On Fri, Jan 28, 2000 at 05:47:01AM -0800, Chris Mason wrote:
> > On Fri, 28 Jan 2000, Russell Coker wrote:
> > > A colleague told me that with AIX machines you can have two systems mount the
> > > same file system, they then lock the bus whenever they need to do updates.
> > >
> > > Can this give usable write performance? If so is it worth considering?
> > >
> > Only if you also include some kind of lock manager. Without it, the two
> > boxes would have no way if knowing if and when their caches are still
> > valid.
> >
> > Once you have the lock manager, you don't need the full device
> > lock, the systems can coordinate who is writing/reading which blocks.
> >
> > Anybody know exactly what AIX provides here?
>
> Sounds similar to GFS (which I only recently learned about and find totally
> amazing and plan to play with soon and perhaps implement it in a production
> environment if it is all it's cracked up to be) only not over fibrechannel.
You can use parallel scsi as well.
> It does fine grain locking, manages cache coherency, the works:
>
> www.globalfilesystem.org
>
> I've been meaning to mention this to you guys and make sure everyone was aware
> of it. It is a journalling filesystem
Not so far.
The GFS group is working on journalling extensions right now.
AFAIK multi client journaling is supposed to be ready around march/april this.
> while allows multiple hosts to mount the
> same filesystem at the same time. I hope to see a lot of integration between
> reiserfs, GFS, LVM, and MD in the future. There is currently a lot of overlap
> in these areas.
Basically very little overlapping here.
reiserfs and GFS work fine with LVM right now because they work in different
layers of the kernel. The VFS and the Block Device Layer respectivly.
The disatvantage today is the lack of distribution/cluster support in LVM.
I'll work on extensions in that area this year taking into regard and
using the results (APIs etc.) the Linux Cluster Infrastructure Group
around Stephen Tweedie, Peter Bram, Volker Wiegand and others will give us.
Today you are only able to setup a LVM volume group and create logical volumes
on one host and to share it with the others in an afterwards not
changable manner 8-{(
Doing this you can create a GFS in each of these
volumes, mount is on all hosts and do i/o using the GFS given locking.
This has already been tested 8-{)
Journaling filesystems like ext3 and reiserfs _don't_ work reliable
with MD's RAID5 support because of buffercache issues (see recent linux-raid
threads). If you want to have disk redundancy in this case you better
install hardware raid subsystems.
> Linux needs all of these features to be smoothly integrated
> and very stable if it is going to go head to head with the big boys someday.
>
> --
> Tracy Reed http://www.ultraviolet.org
>
Heinz
--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Systemmanagement CS-TS T-Nova
Entwicklungszentrum Darmstadt
Heinz Mauelshagen Otto-Roehm-Strasse 71c
Senior Systems Engineer Postfach 10 05 41
64205 Darmstadt
mge@EZ-Darmstadt.Telekom.de Germany
+49 6151 886-425
FAX-386
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] Re: (reiserfs) Re: AIX JFS dual-mount
[not found] ` <20000129095403.A24375@lenin.nu>
@ 2000-01-29 20:26 ` Tracy R Reed
2000-01-29 20:32 ` Peter C. Norton
0 siblings, 1 reply; 6+ messages in thread
From: Tracy R Reed @ 2000-01-29 20:26 UTC (permalink / raw)
To: Peter C. Norton; +Cc: linux-lvm
On Sat, Jan 29, 2000 at 09:54:03AM -0800, Peter C. Norton wrote:
> GFS seems to require some support from hardware in the way of "dlocks", a
> not-too widely supported standard. I think you'd need to have drives that
> implement dlocks, and that the lvm would have to know about them. What
> would need to be done to the volume stuff to support dlocks? Could any
> filesystem be built on top of a volume manager with dlock support?
There are two options: You can use dlocks with special drive firmware or you
can use a global lock manager over TCP with one of the hosts running the lock
manager. I was thinking the latter way might be possible for non-fibrechannel
setups.
--
Tracy Reed http://www.ultraviolet.org
"She moves in mysterious ways"
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] Re: (reiserfs) Re: AIX JFS dual-mount
2000-01-29 18:36 ` Heinz Mauelshagen
@ 2000-01-29 20:27 ` Tracy R Reed
2000-01-30 0:37 ` Heinz Mauelshagen
0 siblings, 1 reply; 6+ messages in thread
From: Tracy R Reed @ 2000-01-29 20:27 UTC (permalink / raw)
To: Heinz Mauelshagen; +Cc: mge, linux-lvm
On Sat, Jan 29, 2000 at 07:36:02PM +0100, Heinz Mauelshagen wrote:
> > I've been meaning to mention this to you guys and make sure everyone was aware
> > of it. It is a journalling filesystem
>
> Not so far.
>
> The GFS group is working on journalling extensions right now.
> AFAIK multi client journaling is supposed to be ready around march/april this.
According to their IEEE paper GFS-4 is already journalling.
--
Tracy Reed http://www.ultraviolet.org
"She moves in mysterious ways"
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] Re: (reiserfs) Re: AIX JFS dual-mount
2000-01-29 20:26 ` Tracy R Reed
@ 2000-01-29 20:32 ` Peter C. Norton
0 siblings, 0 replies; 6+ messages in thread
From: Peter C. Norton @ 2000-01-29 20:32 UTC (permalink / raw)
To: Tracy R Reed; +Cc: linux-lvm
There does seem to be a seagate scsi drive listed that does some kind of
dlocks. Dlocks may not be FC only.
-Peter
On Sat, Jan 29, 2000 at 12:26:14PM -0800, Tracy R Reed wrote:
> On Sat, Jan 29, 2000 at 09:54:03AM -0800, Peter C. Norton wrote:
> > GFS seems to require some support from hardware in the way of "dlocks", a
> > not-too widely supported standard. I think you'd need to have drives that
> > implement dlocks, and that the lvm would have to know about them. What
> > would need to be done to the volume stuff to support dlocks? Could any
> > filesystem be built on top of a volume manager with dlock support?
>
> There are two options: You can use dlocks with special drive firmware or you
> can use a global lock manager over TCP with one of the hosts running the lock
> manager. I was thinking the latter way might be possible for non-fibrechannel
> setups.
>
> --
> Tracy Reed http://www.ultraviolet.org
> "She moves in mysterious ways"
--
The 5 year plan:
In five years we'll make up another plan.
Or just re-use this one.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [linux-lvm] Re: (reiserfs) Re: AIX JFS dual-mount
2000-01-29 20:27 ` Tracy R Reed
@ 2000-01-30 0:37 ` Heinz Mauelshagen
0 siblings, 0 replies; 6+ messages in thread
From: Heinz Mauelshagen @ 2000-01-30 0:37 UTC (permalink / raw)
To: Tracy R Reed; +Cc: mge, linux-lvm
> On Sat, Jan 29, 2000 at 07:36:02PM +0100, Heinz Mauelshagen wrote:
> > > I've been meaning to mention this to you guys and make sure everyone was aware
> > > of it. It is a journalling filesystem
> >
> > Not so far.
> >
> > The GFS group is working on journalling extensions right now.
> > AFAIK multi client journaling is supposed to be ready around march/april this.
>
> According to their IEEE paper GFS-4 is already journalling.
>
The last release is of september 1999 and we have to wait till journaling
is production ready...
> --
> Tracy Reed http://www.ultraviolet.org
> "She moves in mysterious ways"
>
Heinz
--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Systemmanagement CS-TS T-Nova
Entwicklungszentrum Darmstadt
Heinz Mauelshagen Otto-Roehm-Strasse 71c
Senior Systems Engineer Postfach 10 05 41
64205 Darmstadt
mge@EZ-Darmstadt.Telekom.de Germany
+49 6151 886-425
FAX-386
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2000-01-30 0:37 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <Pine.LNX.4.10.10001280539550.13561-100000@home.suse.com>
2000-01-29 8:14 ` [linux-lvm] Re: (reiserfs) Re: AIX JFS dual-mount Tracy R Reed
2000-01-29 18:36 ` Heinz Mauelshagen
2000-01-29 20:27 ` Tracy R Reed
2000-01-30 0:37 ` Heinz Mauelshagen
[not found] ` <20000129095403.A24375@lenin.nu>
2000-01-29 20:26 ` Tracy R Reed
2000-01-29 20:32 ` Peter C. Norton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox