Re: Postgres 9.1 Synchronous Replication and stuck queries during sync repl setup

Поиск
Список
Период
Сортировка
От Gabriele Bartolini
Тема Re: Postgres 9.1 Synchronous Replication and stuck queries during sync repl setup
Дата
Msg-id d629d3e88a253854ba07ae54beda45c4@2ndquadrant.it
обсуждение исходный текст
Ответ на Postgres 9.1 Synchronous Replication and stuck queries during sync repl setup  (Manoj Govindassamy <manoj@nimblestorage.com>)
Ответы Re: Postgres 9.1 Synchronous Replication and stuck queries during sync repl setup
Список pgsql-admin
 Hi,

 On Wed, 6 Jun 2012 14:55:15 +0000, Manoj Govindassamy
 <manoj@nimblestorage.com> wrote:
> PG Slave gets fresh backup from PG master using pg_backup utility
> everytime before it starts up

 That's not necessary. Usually you do this only the first time you set
 it up, then take advantage of the wal_keep_segments on the master and
 allow the standby to resync.

> A. I need to know why PG master started accepting connections at (1)
> and still NOT able to fully commit the transactions. Statements that
> are executed after (3) are not seeing this problem.

 This behaviour is perfectly fine. Until the master and the standby are
 in sync, given that you set the standby to be the synchronous one, the
 master MUST wait until the standby writes on disk the transaction
 information.

 I suggest that first you remove the standby server from the list of
 synchronous servers by commenting the 'synchronous_standby_names' line
 and wait until the standby catches up (asynchronous streaming
 replication). Then uncomment the 'synchronous_standby_names' line on the
 master and issue a reload. From that moment on you will have synchronous
 streaming replication in place.

 Cheers,
 Gabriele

 P.S.: I took it for granted that the two servers are in the same LAN.
--
  Gabriele Bartolini - 2ndQuadrant Italia
  PostgreSQL Training, Services and Support
  Gabriele.Bartolini@2ndQuadrant.it - www.2ndQuadrant.it

В списке pgsql-admin по дате отправления:

Предыдущее
От: Manoj Govindassamy
Дата:
Сообщение: Postgres 9.1 Synchronous Replication and stuck queries during sync repl setup
Следующее
От: Mike Broers
Дата:
Сообщение: postgres block size alignment with filesystem block size