diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-09-17 21:37:02 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-09-17 22:00:23 -0400 |
commit | 8edacab209957520423770851351ab4013cb0167 (patch) | |
tree | e4bafe86aa5c98e060bbde6693f8258b49f7660f /contrib/ltree_plpython/ltree_plpython.c | |
parent | 68ab9acd8557a9401a115a5369a14bf0a169e8e7 (diff) | |
download | postgresql-8edacab209957520423770851351ab4013cb0167.tar.gz postgresql-8edacab209957520423770851351ab4013cb0167.zip |
Fix DROP SUBSCRIPTION hang
When ALTER SUBSCRIPTION DISABLE is run in the same transaction before
DROP SUBSCRIPTION, the latter will hang because workers will still be
running, not having seen the DISABLE committed, and DROP SUBSCRIPTION
will wait until the workers have vacated the replication origin slots.
Previously, DROP SUBSCRIPTION killed the logical replication workers
immediately only if it was going to drop the replication slot, otherwise
it scheduled the worker killing for the end of the transaction, as a
result of 7e174fa793a2df89fe03d002a5087ef67abcdde8. This, however,
causes the present problem. To fix, kill the workers immediately in all
cases. This covers all cases: A subscription that doesn't have a
replication slot must be disabled. It was either disabled in the same
transaction, or it was already disabled before the current transaction,
but then there shouldn't be any workers left and this won't make a
difference.
Reported-by: Arseny Sher <a.sher@postgrespro.ru>
Discussion: https://www.postgresql.org/message-id/flat/87mv6av84w.fsf%40ars-thinkpad
Diffstat (limited to 'contrib/ltree_plpython/ltree_plpython.c')
0 files changed, 0 insertions, 0 deletions