Re: PostgreSQL Replication

From: Csaba Nagy <nagy(at)ecircle-ag(dot)com>
To: Dieter Schröder <dieterschroder(at)gmail(dot)com>
Cc: Postgres general mailing list <pgsql-general(at)postgresql(dot)org>
Subject: Re: PostgreSQL Replication
Date: 2005-02-18 16:53:28
Message-ID: 1108745607.22378.40.camel@coppola.muc.ecircle.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Dieter,

Slony is the most active replication project and it looks like it is the
most used lately, but if it is the best for you depends on what you
need, as there's no "one size fits all" replication solution.
If you want master-slave asynchronous replication with only one master
and few possibly cascaded slaves, with the capability of take-over in
case of a failure, then slony is a good choice.
But if you want a multi-master or synchronous replication, slony is not
providing that. So it all depends on your needs.
In short: slony is good for keeping a hot backup, it can greatly help on
server upgrade (it can replicate between different versions of
postgres), but it will not keep the slaves completely in sync with the
master, there will always be a time gap between the data, and it will
not help distributing update load. Distributing select load is possible
if you're ok with the possible time gap of the slaves against the
current data. The slaves will be consistent though in terms of
transactionality.

HTH,
Csaba.

On Fri, 2005-02-18 at 17:40, Dieter Schröder wrote:
> Hello all,
>
> I am currently migrating a few oracle servers to postgre sql and
> management wants us to have replication. We have found information
> about the slony replicator with blog posts and articles. We have not
> found any other replication systems reviewed, so it slony the best
> tool for the job?
>
> I am looking for some articles to share with our management before we
> make a choice.
>
> Sincerely,
>
> D. Schröder
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Scott Marlowe 2005-02-18 16:58:08 Re: PostgreSQL Replication
Previous Message Dieter Schröder 2005-02-18 16:40:51 PostgreSQL Replication