Lists: | pgsql-hackerspgsql-patches |
---|
From: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org |
Subject: | Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 10:16:57 |
Message-ID: | 20021011101657.GA6745@lklug.pdn.ac.lk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
Hi all,
I am trying to add some replication features to postgres (yes, I have
already looked at ongoing work), in a peer to peer manner. The goal
is to achive `nearly complete fault tolerence' by replicating data.
The basic framework I have in mind is somewhat like this.
- Postmasters are running on different computers on a networked cluster.
Their data areas are identical at the beginning and recide on local
storage devices.
- Each postmaster is aware that they are a part of a cluster and they
can communicate with each other, send multicast requests and look for
each other's presence (like heartbeat in linux-ha project).
- When a frontend process sends a read query, each backend process
does that from its own data area.
- There are two types of write queries. Postmasters use seperate
communication channels for each. One is the sequencial channel which
carries writes whose order is important, and the non-sequencial
channel carries write queries whose order is not important.
- When a frontend process sends non-sequencial write query to a backend,
it is directly written to the local data area and a multicast is
sent (preferably asynchronously) to the other postmasters who will
also update their respective local areas.
May be we can simply duplicate what goes to WAL into a TCP/IP socket
(with some header info, of course).
- When a sequencial-write query is requested, the corresponding
postmaster informs a main-postmaster (more about in the next point),
waits for his acknowledgement, and proceeds the same way as the
non-sequencial write.
- Each postmaster is assigned a priority. The one with the highest
priority is doing some bookkeeping to handle concurrency issues etc.
If he goes away, another one takes charge.
Or maybe we can completely ignore the main-postmaster concept and
let the clients broadcast a request to obtain locks etc.
- When a new postmaster, hence a computer, joins the cluster, he
will replicate the current database from one of the clients.
Suggessions and critisisms are welcome.
Anuradha
--
Debian GNU/Linux (kernel 2.4.18-xfs-1.1)
The best audience is intelligent, well-educated and a little drunk.
-- Maurice Baring
From: | "Shridhar Daithankar" <shridhar_daithankar(at)persistent(dot)co(dot)in> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 10:24:15 |
Message-ID: | 3DA6F427.24136.958BD13@localhost |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On 11 Oct 2002 at 16:16, Anuradha Ratnaweera wrote:
>
> Hi all,
>
> I am trying to add some replication features to postgres (yes, I have
> already looked at ongoing work), in a peer to peer manner. The goal
> is to achive `nearly complete fault tolerence' by replicating data.
Sounds a lot like usogres. You got it running. (I never had a chance.) I would
like to hear how it compares against it.
Can anybody comment how maintained usogres is. It covers an important area of
replication but I am not sure how maintained that is. If it is not, I suggest
we pick it up and finish it.
HTH
Bye
Shridhar
--
You go slow, be gentle. It's no one-way street -- you know how youfeel and
that's all. It's how the girl feels too. Don't press. Ifthe girl feels
anything for you at all, you'll know. -- Kirk, "Charlie X", stardate 1535.8
From: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
---|---|
To: | Shridhar Daithankar <shridhar_daithankar(at)persistent(dot)co(dot)in> |
Cc: | pgsql-hackers(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org |
Subject: | Re: [HACKERS] Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 10:29:59 |
Message-ID: | 20021011102958.GA7037@lklug.pdn.ac.lk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On Fri, Oct 11, 2002 at 03:54:15PM +0530, Shridhar Daithankar wrote:
>
> On 11 Oct 2002 at 16:16, Anuradha Ratnaweera wrote:
>
> > I am trying to add some replication features to postgres (yes, I have
> > already looked at ongoing work), in a peer to peer manner. The goal
> > is to achive `nearly complete fault tolerence' by replicating data.
>
> Sounds a lot like usogres. You got it running. (I never had a chance.) I would
> like to hear how it compares against it.
>
> Can anybody comment how maintained usogres is. It covers an important area of
> replication but I am not sure how maintained that is. If it is not, I suggest
> we pick it up and finish it.
I will look at it, too. Thanks for the link. In some cases, starting
anew is faster than learning unmaintained existing code.
My original mail would have been much shorter if it simply stated that I
want to add `application level RAID-0' to postgres ;)
Anuradha
--
Debian GNU/Linux (kernel 2.4.18-xfs-1.1)
I think the world is run by C students.
-- Al McGuire
From: | "Shridhar Daithankar" <shridhar_daithankar(at)persistent(dot)co(dot)in> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 10:34:29 |
Message-ID: | 3DA6F68D.19676.9621B74@localhost |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On 11 Oct 2002 at 16:29, Anuradha Ratnaweera wrote:
> On Fri, Oct 11, 2002 at 03:54:15PM +0530, Shridhar Daithankar wrote:
> I will look at it, too. Thanks for the link. In some cases, starting
> anew is faster than learning unmaintained existing code.
While that's true, usogres code is just few files. I wouldn't take more than
half an hour to read up the things. And besides it contain postgresql protocol
implementation necessary which would take some time to test and debug,
And it's in C++. I like that..;-)
> My original mail would have been much shorter if it simply stated that I
> want to add `application level RAID-0' to postgres ;)
:-)
Bye
Shridhar
--
QOTD: "Do you smell something burning or is it me?" -- Joan of Arc
From: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
---|---|
To: | Shridhar Daithankar <shridhar_daithankar(at)persistent(dot)co(dot)in> |
Cc: | pgsql-hackers(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 10:39:54 |
Message-ID: | 20021011103954.GA7338@lklug.pdn.ac.lk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On Fri, Oct 11, 2002 at 04:04:29PM +0530, Shridhar Daithankar wrote:
> On 11 Oct 2002 at 16:29, Anuradha Ratnaweera wrote:
>
> > On Fri, Oct 11, 2002 at 03:54:15PM +0530, Shridhar Daithankar wrote:
> > I will look at it, too. Thanks for the link. In some cases, starting
> > anew is faster than learning unmaintained existing code.
Ok. Checked out what usogres is. It is not what I want. I don't want
a static `main database'. It should simply a cluster of them - just like
a set of Raid-0 disks, may be with a tempory controller for some tasks.
Also, as a matter of fact, usogres is not unmaintained code.
> While that's true, usogres code is just few files. I wouldn't take more than
> half an hour to read up the things. And besides it contain postgresql protocol
> implementation necessary which would take some time to test and debug,
Great. I will look into this over the weekend.
> And it's in C++. I like that..;-)
And I DON'T like that ;)
Anuradha
--
Debian GNU/Linux (kernel 2.4.18-xfs-1.1)
QOTD:
"I ain't broke, but I'm badly bent."
From: | "Shridhar Daithankar" <shridhar_daithankar(at)persistent(dot)co(dot)in> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 10:59:53 |
Message-ID: | 3DA6FC81.5782.9795D8E@localhost |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | Postg스포츠 토토 베트맨SQL Postg와이즈 토토SQL |
On 11 Oct 2002 at 16:39, Anuradha Ratnaweera wrote:
> On Fri, Oct 11, 2002 at 04:04:29PM +0530, Shridhar Daithankar wrote:
> > On 11 Oct 2002 at 16:29, Anuradha Ratnaweera wrote:
> >
> > > On Fri, Oct 11, 2002 at 03:54:15PM +0530, Shridhar Daithankar wrote:
> > > I will look at it, too. Thanks for the link. In some cases, starting
> > > anew is faster than learning unmaintained existing code.
>
> Ok. Checked out what usogres is. It is not what I want. I don't want
> a static `main database'. It should simply a cluster of them - just like
> a set of Raid-0 disks, may be with a tempory controller for some tasks.
Well, I don't think adding support for multiple slaves to usogres would be that
problematic. Of course if you want to load balance your application queries,
application has to be aware of that. I will not do sending requests to a mosix
cluster anyway.
> Also, as a matter of fact, usogres is not unmaintained code.
Glad to know that. I wrote to author with some suggestion and never got a
reply. Didn't bother joining mailing list though..
Regards,
Shridhar
-----------------------------------------------------------
Shridhar Daithankar
LIMS CPE Team Member, PSPL.
mailto:shridhar_daithankar(at)persistent(dot)co(dot)in
Phone:- +91-20-5678900 Extn.270
Fax :- +91-20-5678901
-----------------------------------------------------------
From: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
---|---|
To: | Shridhar Daithankar <shridhar_daithankar(at)persistent(dot)co(dot)in> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 11:15:00 |
Message-ID: | 20021011111500.GA8065@lklug.pdn.ac.lk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On Fri, Oct 11, 2002 at 04:29:53PM +0530, Shridhar Daithankar wrote:
>
> Well, I don't think adding support for multiple slaves to usogres would be that
> problematic. Of course if you want to load balance your application queries,
> application has to be aware of that. I will not do sending requests to a mosix
> cluster anyway.
Have already tested postgres on a mosix cluster, and as expected results
are not good. (although mosix does the correct thing in keeping all the
database backend processes on one node).
Anuradha
--
Debian GNU/Linux (kernel 2.4.18-xfs-1.1)
Remember: Silly is a state of Mind, Stupid is a way of Life.
-- Dave Butler
From: | Greg Copeland <greg(at)CopelandConsulting(dot)Net> |
---|---|
To: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
Cc: | Shridhar Daithankar <shridhar_daithankar(at)persistent(dot)co(dot)in>, PostgresSQL Hackers Mailing List <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 13:30:55 |
Message-ID: | 1034343056.4863.53.camel@mouse.copelandconsulting.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
I'd be curious to hear in a little more detail what constitutes "not
good" for postgres on a mosix cluster.
Greg
On Fri, 2002-10-11 at 06:15, Anuradha Ratnaweera wrote:
> On Fri, Oct 11, 2002 at 04:29:53PM +0530, Shridhar Daithankar wrote:
> >
> > Well, I don't think adding support for multiple slaves to usogres would be that
> > problematic. Of course if you want to load balance your application queries,
> > application has to be aware of that. I will not do sending requests to a mosix
> > cluster anyway.
>
> Have already tested postgres on a mosix cluster, and as expected results
> are not good. (although mosix does the correct thing in keeping all the
> database backend processes on one node).
>
> Anuradha
>
> --
>
> Debian GNU/Linux (kernel 2.4.18-xfs-1.1)
>
> Remember: Silly is a state of Mind, Stupid is a way of Life.
> -- Dave Butler
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
From: | "Shridhar Daithankar" <shridhar_daithankar(at)persistent(dot)co(dot)in> |
---|---|
To: | PostgresSQL Hackers Mailing List <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 13:40:26 |
Message-ID: | 3DA72222.20021.A0C58DF@localhost |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On 11 Oct 2002 at 8:30, Greg Copeland wrote:
> I'd be curious to hear in a little more detail what constitutes "not
> good" for postgres on a mosix cluster.
> On Fri, 2002-10-11 at 06:15, Anuradha Ratnaweera wrote:
> > On Fri, Oct 11, 2002 at 04:29:53PM +0530, Shridhar Daithankar wrote:
> > Have already tested postgres on a mosix cluster, and as expected results
> > are not good. (although mosix does the correct thing in keeping all the
> > database backend processes on one node).
Well, I guess in kind of replication we are talking here, the performance will
be enhanced only if separate instances of psotgresql runs on separate machine.
Now if mosix kernel applies some AI and puts all of them on same machine, it
isn't going to be any good for the purpose replication is deployed.
I guess that's what she meant..
Bye
Shridhar
--
User n.: A programmer who will believe anything you tell him.
From: | Greg Copeland <greg(at)CopelandConsulting(dot)Net> |
---|---|
To: | shridhar_daithankar(at)persistent(dot)co(dot)in |
Cc: | PostgresSQL Hackers Mailing List <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 14:49:17 |
Message-ID: | 1034347758.4863.69.camel@mouse.copelandconsulting.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
Well, not scalable doesn't have to mean "not good". That's why I
asked. Considering this is one of the problems with mosix clusters
(process migration and associated restrictions) and the nature of
PostgreSQL's implementation I'm not sure what other result may of been
expected. Because of that, I wasn't sure if something else was being
implied.
Greg
On Fri, 2002-10-11 at 08:40, Shridhar Daithankar wrote:
> On 11 Oct 2002 at 8:30, Greg Copeland wrote:
>
> > I'd be curious to hear in a little more detail what constitutes "not
> > good" for postgres on a mosix cluster.
> > On Fri, 2002-10-11 at 06:15, Anuradha Ratnaweera wrote:
> > > On Fri, Oct 11, 2002 at 04:29:53PM +0530, Shridhar Daithankar wrote:
> > > Have already tested postgres on a mosix cluster, and as expected results
> > > are not good. (although mosix does the correct thing in keeping all the
> > > database backend processes on one node).
>
> Well, I guess in kind of replication we are talking here, the performance will
> be enhanced only if separate instances of psotgresql runs on separate machine.
> Now if mosix kernel applies some AI and puts all of them on same machine, it
> isn't going to be any good for the purpose replication is deployed.
>
> I guess that's what she meant..
>
> Bye
> Shridhar
>
> --
> User n.: A programmer who will believe anything you tell him.
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
From: | Neil Conway <neilc(at)samurai(dot)com> |
---|---|
To: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-11 16:07:00 |
Message-ID: | 87bs61kli3.fsf@mailbox.samurai.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
[ pgsql-patches removed from Cc: list ]
Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> writes:
> I am trying to add some replication features to postgres (yes, I have
> already looked at ongoing work), in a peer to peer manner.
Did you look at the research behind Postgres-R, and the pgreplication
stuff?
> - When a frontend process sends a read query, each backend process
> does that from its own data area.
Surely that's not correct -- a SELECT can be handled by *any one*
node, not each and every one, right?
> - There are two types of write queries. Postmasters use seperate
> communication channels for each. One is the sequencial channel which
> carries writes whose order is important, and the non-sequencial
> channel carries write queries whose order is not important.
How do you distinguish between these?
Cheers,
Neil
--
Neil Conway <neilc(at)samurai(dot)com> || PGP Key ID: DB3C29FC
From: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
---|---|
To: | Greg Copeland <greg(at)copelandconsulting(dot)net> |
Cc: | Shridhar Daithankar <shridhar_daithankar(at)persistent(dot)co(dot)in>, PostgresSQL Hackers Mailing List <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-14 05:52:36 |
Message-ID: | 20021014055236.GA23044@lklug.pdn.ac.lk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On Fri, Oct 11, 2002 at 08:30:55AM -0500, Greg Copeland wrote:
>
> I'd be curious to hear in a little more detail what constitutes "not
> good" for postgres on a mosix cluster.
It seems that almost all the postgres processes remain in the `home'
node.
Please notice that I am not underestimating Mosix in any way. We have
tested many programs from our parallel processing project with extreme
success on our mosix cluster.
Anuradha
--
Debian GNU/Linux (kernel 2.4.18-xfs-1.1)
Ginger snap.
From: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
---|---|
To: | Shridhar Daithankar <shridhar_daithankar(at)persistent(dot)co(dot)in> |
Cc: | PostgresSQL Hackers Mailing List <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-14 05:55:49 |
Message-ID: | 20021014055549.GB23044@lklug.pdn.ac.lk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On Fri, Oct 11, 2002 at 07:10:26PM +0530, Shridhar Daithankar wrote:
> On 11 Oct 2002 at 8:30, Greg Copeland wrote:
>
> > I'd be curious to hear in a little more detail what constitutes "not
> > good" for postgres on a mosix cluster.
>
> Well, I guess in kind of replication we are talking here, the
> performance will be enhanced only if separate instances of psotgresql
> runs on separate machine. Now if mosix kernel applies some AI and
> puts all of them on same machine, it isn't going to be any good for
> the purpose replication is deployed.
Exactly. First, since we know what is going on, it is not necessary for
the OS to decide what's going on. Secondly, database replication is not
looked after at all, unless we do some crude tricks on the filesystem.
Still it won't be efficient.
> I guess that's what she meant..
^^^
Correction: "that's what _HE_ meant..." ;)
Anuradha
--
Debian GNU/Linux (kernel 2.4.18-xfs-1.1)
All other things being equal, a bald man cannot be elected President of
the United States.
-- Vic Gold
From: | "Shridhar Daithankar" <shridhar_daithankar(at)persistent(dot)co(dot)in> |
---|---|
To: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
Cc: | PostgresSQL Hackers Mailing List <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-14 06:01:33 |
Message-ID: | 3DAAAB15.23813.89FD756@localhost |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers pgsql-patches |
On 14 Oct 2002 at 11:55, Anuradha Ratnaweera wrote:
> On Fri, Oct 11, 2002 at 07:10:26PM +0530, Shridhar Daithankar wrote:
> > On 11 Oct 2002 at 8:30, Greg Copeland wrote:
> >
> > > I'd be curious to hear in a little more detail what constitutes "not
> > > good" for postgres on a mosix cluster.
> >
> > Well, I guess in kind of replication we are talking here, the
> > performance will be enhanced only if separate instances of psotgresql
> > runs on separate machine. Now if mosix kernel applies some AI and
> > puts all of them on same machine, it isn't going to be any good for
> > the purpose replication is deployed.
>
> Exactly. First, since we know what is going on, it is not necessary for
> the OS to decide what's going on. Secondly, database replication is not
> looked after at all, unless we do some crude tricks on the filesystem.
> Still it won't be efficient.
IMO any one layer of clustering should be enough. If you use mosix, you
shouldn't need clustering in postgresql. If postgresql clustering is applied
any heterogenous machines like freebsd/linux should do. (OK same architecture
at least. No suns and PCs..)
Let's keep aside mosix for the time being. Application level clustering is what
postgresql needs.
What next? which one should we work on? Postgres-R/Usogres/ER-server?
>
> > I guess that's what she meant..
> ^^^
> Correction: "that's what _HE_ meant..." ;)
Argh... Extremely sorry, in India, special nouns ending with 'a' are usually
feminine.. Like Radha..
Sorry again..:-)
Bye
Shridhar
--
Weiner's Law of Libraries: There are no answers, only cross references.
From: | Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> |
---|---|
To: | Neil Conway <neilc(at)samurai(dot)com> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Peer to peer replication of Postgresql databases |
Date: | 2002-10-14 06:05:30 |
Message-ID: | 20021014060530.GA23353@lklug.pdn.ac.lk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-hackers Postg롤 토토SQL : |
On Fri, Oct 11, 2002 at 12:07:00PM -0400, Neil Conway wrote:
> [ pgsql-patches removed from Cc: list ]
>
> Anuradha Ratnaweera <anuradha(at)lklug(dot)pdn(dot)ac(dot)lk> writes:
> > I am trying to add some replication features to postgres (yes, I
> > have already looked at ongoing work), in a peer to peer manner.
>
> Did you look at the research behind Postgres-R, and the pgreplication
> stuff?
Am looking at the research papers related to it now.
> > - When a frontend process sends a read query, each backend process
> > does that from its own data area.
>
> Surely that's not correct -- a SELECT can be handled by *any one*
> node, not each and every one, right?
Yes. Sorry about my careless wording. Unless anything is kind of
locked, each node has a copy of the database, so each one can handle
SELECTs individually.
The actual situation will be far from this simple, because there will be
database writes going on and generating consistent SELECTs would need
careful handling of concurency issues.
> > - There are two types of write queries. Postmasters use seperate
> > communication channels for each. One is the sequencial channel which
> > carries writes whose order is important, and the non-sequencial
> > channel carries write queries whose order is not important.
>
> How do you distinguish between these?
Nope. We assume that all the communication should go through the
sequencial channel unless indicated by the client. In that case, we
will have to find a way to indicate this from the client's side. This
doesn't sound very elegant, may be we can figure out a better way.
Anuradha
--
Debian GNU/Linux (kernel 2.4.18-xfs-1.1)
"Being against torture ought to be sort of a bipartisan thing."
-- Karl Lehenbauer