Re: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work

Поиск
Список
Период
Сортировка
От Andres Freund
Тема Re: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work
Дата
Msg-id 20180813144534.piruesukkjw6zl4b@alap3.anarazel.de
обсуждение исходный текст
Ответ на BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work  ("Phil Endecott" <spam_from_pgsql_lists@chezphil.org>)
Список pgsql-bugs
Hi,

On 2018-08-13 14:37:00 +0000, PG Bug reporting form wrote:
> The following bug has been logged on the website:
> 
> Bug reference:      15323
> Logged by:          Phil Endecott
> Email address:      spam_from_pgsql_lists@chezphil.org
> PostgreSQL version: 9.6.10
> Operating system:   Debian Stretch
> Description:        
> 
> I have set up a replication system that uses a combination of WAL segment
> archiving and streaming.
> If the slave goes down for a period, when it restarts it will initially
> fetch WAL segment files from the archive using restore_command.  After
> fetching the last of these it will start streaming directly from the
> master.
> It seems that the WAL segment files may have a small empty space at the end
> due presumably to the size of the records.  In my case, the last archived
> WAL segment ended at offset 0xFFF088.  The slave therefore tried to start
> streaming at that position.  But the master had already archived that
> segment and recycled it, because I had not set wal_keep_segments and it
> defaults to 0.  Streaming therefore failed to start.

But it'll retry after failing back to archiving, no?


> It seems to me that wal_keep_segments must always be >= 1 for the
> combination of WAL archiving and streaming to work.

You can also use replication slots, which is usually the better alternative:

https://www.postgresql.org/docs/current/static/warm-standby.html#STREAMING-REPLICATION-SLOTS

Greetings,

Andres Freund


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

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work
Следующее
От: "Phil Endecott"
Дата:
Сообщение: Re: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work