Re: Replication & BLOBs - Mailing list pgsql-general

From Tatsuo Ishii
Subject Re: Replication & BLOBs
Date
Msg-id 20041125.103802.78078272.t-ishii@sra.co.jp
Whole thread Raw
In response to Replication & BLOBs  (Mark Childerson <mark@espressocode.com>)
Responses Re: Replication & BLOBs
List pgsql-general
pgpool(http://www2b.biglobe.ne.jp/~caco/pgpool/index-e.html) surely
can handle large objects. I don't know any other replication solutions
can handle them.

Be carefull, however, please make sure that the master and the slave
database clusters are physically synced before starting
replication. Also if multiple sessions are going to concurrently
create large objects, you need to make cluster wide explicite
concurrency controls. Otherwise OIDs may not become identical among
master/slave. To accomplish this, you can lock the shared table. For
example,

BEGIN;
LOCK TABLE pg_database;
creating large objec...
--
Tatsuo Ishii

> Does anyone know of an open source  single master- multi (or single) slave
> replication system for Postgresql 7 or 8 which handles BLOBs?
>
> Thanks,
>
> Mark Childerson
>
>
> Mark Childerson
> espressoCode inc.
> Ph: 416-963-8793
> Fax: 416-963-8643
>
> www.exdocs.com
> www.espressocode.com
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 7: don't forget to increase your free space map settings
>

pgsql-general by date:

Previous
From: "Net Virtual Mailing Lists"
Date:
Subject: Re: pgdump of schema...
Next
From: "Joshua D. Drake"
Date:
Subject: Re: Replication & BLOBs