Re: [GENERAL] Re: replication

From: Jeff Hoffmann <jeff(at)propertykey(dot)com>
To: "Aaron J(dot) Seigo" <aaron(at)gtv(dot)ca>, pgsql-general(at)hub(dot)org
Subject: Re: [GENERAL] Re: replication
Date: 1999-11-16 19:33:02
Message-ID: 3831B16E.F1D48D46@propertykey.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Aaron J. Seigo" wrote:

> this needs to be in the back end... otherwise, if you have multiple people
> performing updates on different replicated servers, how can you guarentee
> concurancy? how do you manage the differences between read-only and updateable
> replicants? (this can be done using your wrapper method, but quickly gets
> clumsy)

yeah it can get clumsy, but fortunately updates are pretty rare in my
case (and usually only performed by one person) so i don't really worry
about those issues, but i should. the only safety issue i use is
starting a transaction for each connection, perform the action on all of
the databases, and then commit the transaction on each. it's not bad
unless one of the commits fails and the others don't, then i have to
retry the failed ones & hope it works. i don't know how to fix it if i
had to give up on one of the transactions for a mirror. again, not
perfect, but it works pretty well for me & my simpler cases.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Richard Welsh 1999-11-16 20:41:23 Re: [GENERAL] Re: replication
Previous Message Aaron J. Seigo 1999-11-16 18:54:23 Re: [GENERAL] Re: replication