Re: [GENERAL] Replication slot and pg_rewind

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема Re: [GENERAL] Replication slot and pg_rewind
Дата
Msg-id CAB7nPqRPQjpSrwC+cPR6Y-VUsPBHsrDWLAfuaxfpAC6ARg6Osg@mail.gmail.com
обсуждение исходный текст
Ответ на [GENERAL] Replication slot and pg_rewind  ("Bhattacharyya, Subhro" <s.bhattacharyya@sap.com>)
Ответы Re: [GENERAL] Replication slot and pg_rewind
Список pgsql-general
On Tue, Jun 6, 2017 at 12:03 PM, Bhattacharyya, Subhro
<s.bhattacharyya@sap.com> wrote:
> We are using the replication slot and pg_rewind feature of postgresql 9.6
> Our cluster consists of 1 master and 1 slave node.
>
> The replication slot feature allows the master to keep as much WAL as is
> required by the slave.
>
> The pg_rewind command uses WALs to bring the slave in sync with the master.
> By using replication slots there are always enough WAL in the pg_xlog.
>
> In this case is it safe to use pg_rewind without WAL archiving?
> Can there be a situation where pg_rewind fails?

When pg_rewind runs it looks at the WAL from the last checkpoint
before WAL diverged on the *target* node, not the source. So retaining
the WAL data on the primary after the standby has been promoted makes
little sense from this point of view. Even worse, once the promoted
standby decides to recycle the past WAL segments you won't be able to
do a rewind of the previous primary because there is no way to know
what are the blocks modified on the standby since the point of
divergence.
--
Michael


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

Предыдущее
От: "Bhattacharyya, Subhro"
Дата:
Сообщение: [GENERAL] Replication slot and pg_rewind
Следующее
От: "Bhattacharyya, Subhro"
Дата:
Сообщение: Re: [GENERAL] Replication slot and pg_rewind