Re: PostgreSQL 9.3 synchronous replication

Поиск
Список
Период
Сортировка
От Matheus de Oliveira
Тема Re: PostgreSQL 9.3 synchronous replication
Дата
Msg-id CAJghg4KkZC-F1QysXFSn_PvdjtV2eaxnd3NKKAp_sodH3NHRFg@mail.gmail.com
обсуждение исходный текст
Ответ на PostgreSQL 9.3 synchronous replication  (Sergey Arlashin <sergeyarl.maillist@gmail.com>)
Ответы Re: PostgreSQL 9.3 synchronous replication
Список pgsql-admin

On Wed, Jan 21, 2015 at 6:25 AM, Sergey Arlashin <sergeyarl.maillist@gmail.com> wrote:
Recently I've found out that synchronous replication just guarantees that the commit has reached the transaction log on the slave. Therefore that doesn't mean the slave has replayed the transaction log and a query against the slave will show the transaction's results.


The exact guarantee depends on synchronous_commit configuration, but none provides guarantee that the xlog records have been applied and ready to query, you are right about it.

 
So I'm wondering if there is a way to ensure that once a transaction is committed the data is available on the slave and I can get it by executing a query against the slave?

Well, you can use compare the values of pg_current_xlog_location on the master immediately after commit and pg_last_xlog_replay_location on the slave (or even use pg_stat_replication.replay_location).

Regards,
--
Matheus de Oliveira
Analista de Banco de Dados
Dextra Sistemas - MPS.Br nível F!
www.dextra.com.br/postgres

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

Предыдущее
От: Vladimir Borodin
Дата:
Сообщение: Re: PostgreSQL 9.3 synchronous replication
Следующее
От: Sergey Arlashin
Дата:
Сообщение: Re: PostgreSQL 9.3 synchronous replication