]> granicus.if.org Git - postgresql/commit
Fix handling of synchronous replication for stopping WAL senders
authorMichael Paquier <michael@paquier.xyz>
Thu, 29 Nov 2018 00:12:53 +0000 (09:12 +0900)
committerMichael Paquier <michael@paquier.xyz>
Thu, 29 Nov 2018 00:12:53 +0000 (09:12 +0900)
commit8340eba6d8473b072a58f3fd50dbeb8fdb706cb2
tree534da840b35c743fac0ba4b41c907be97f8c04dc
parent63d8350665c820203fd48e5690af01c33801fe46
Fix handling of synchronous replication for stopping WAL senders

This fixes an oversight from c6c3334 which forgot that if a subset of
WAL senders are stopping and in a sync state, other WAL senders could
still be waiting for a WAL position to be synced while committing a
transaction.  However the subset of stopping senders would not release
waiters, potentially breaking synchronous replication guarantees.  This
commit makes sure that even WAL senders stopping are able to release
waiters and are tracked properly.

On 9.4, this can also trigger an assertion failure when setting for
example max_wal_senders to 1 where a WAL sender is not able to find
itself as in synchronous state when the instance stops.

Reported-by: Paul Guo
Author: Paul Guo, Michael Paquier
Discussion: https://postgr.es/m/CAEET0ZEv8VFqT3C-cQm6byOB4r4VYWcef1J21dOX-gcVhCSpmA@mail.gmail.com
Backpatch-through: 9.4
src/backend/replication/syncrep.c