Re: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work - Mailing list pgsql-bugs

From Andres Freund
Subject Re: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work
Date
Msg-id 20180813144534.piruesukkjw6zl4b@alap3.anarazel.de
Whole thread Raw
In response to BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work  (PG Bug reporting form <noreply@postgresql.org>)
Responses Re: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work
List 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 by date:

Previous
From: PG Bug reporting form
Date:
Subject: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work
Next
From: "Phil Endecott"
Date:
Subject: Re: BUG #15323: wal_keep_segments must be >= 1 for WAL archiving +streaming to work