]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix issue with WAL archiving in standby.
authorFujii Masao <fujii@postgresql.org>
Thu, 9 Sep 2021 14:58:05 +0000 (23:58 +0900)
committerFujii Masao <fujii@postgresql.org>
Thu, 9 Sep 2021 14:58:26 +0000 (23:58 +0900)
commitdd9b3fced83edb51a3e2f44d3d4476a45d0f5a24
treeb64ef0504b0511bb9d31f8100f3b780f6fdb1db0
parentda7d81dd0579a2579741bcfc816cf614c58d0aab
Fix issue with WAL archiving in standby.

Previously, walreceiver always closed the currently-opened WAL segment
and created its archive notification file, after it finished writing
the current segment up and received any WAL data that should be
written into the next segment. If walreceiver exited just before
any WAL data in the next segment arrived at standby, it did not
create the archive notification file of the current segment
even though that's known completed. This behavior could cause
WAL archiving of the segment to be delayed until subsequent
restartpoints or checkpoints created its notification file.

To fix the issue, this commit changes walreceiver so that it creates
an archive notification file of a current WAL segment immediately
if that's known completed before receiving next WAL data.

Back-patch to all supported branches.

Reported-by: Kyotaro Horiguchi
Author: Fujii Masao
Reviewed-by: Kyotaro Horiguchi
Discussion: https://postgr.es/m/20200630.165503.1465894182551545886.horikyota.ntt@gmail.com
src/backend/replication/walreceiver.c