Re: [HACKERS] Replication documentation addition - Mailing list pgsql-docs

From Markus Schiltknecht
Subject Re: [HACKERS] Replication documentation addition
Date
Msg-id 4561CB3D.8000500@bluegap.ch
Whole thread Raw
In response to Re: [HACKERS] Replication documentation addition  (Bruce Momjian <bruce@momjian.us>)
Responses Re: [HACKERS] Replication documentation addition
List pgsql-docs
Good morning Bruce,

Bruce Momjian wrote:
>> Oops, I see Markus Schiltknech likes the term "statement-based
>> replication" better too.  Certainly master-slave communication using
>> "statement-based replication" has the same drawbacks as the broadcast
>> method, but I wanted to highlight that the broadcast was happening
>> outside the server.  Do we need a master/slave "statement-based
>> replication" item and a middleware broadcast item?

Ah, I see you had a much narrower definition of statement-based
replication in mind. As I've pointed out, there are different
implementations of 'statement-based replication'. I don't know about
sequoia, but Postgres-R fails back to statement based replication in
certain situations. Thus having an external 'program intercept every SQL
query' is absolutely no necessity of this algorithm, it can very well be
done inside the db backend, where you can better catch non-deterministic
functions... but again, that's an implementation detail.

So, do you want to describe pgpool here or do you want to give a more
general description?

>  <varlistentry>
>   <term>Statement-Based Replication</term>
>   <listitem>
>
>    <para>
>     In statement-based replication, a program intercepts every SQL
>     query and sends it to all servers.  Each server operates
>     independently.  Read-only queries can be sent to a single server
>     because there is no need for all servers to process it.
>    </para>

If you want to go for the general description, I think the 'each server
operates independently' is somewhere between confusing and false. And
again, the last sentence applies to all multi-master replication solutions.

Regards

Markus


pgsql-docs by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Replication documentation addition
Next
From: Markus Schiltknecht
Date:
Subject: Re: [Pgcluster-general] PostgreSQL Documentation of High Availability