Fix the Drop Database hang.
The drop database command waits for the logical replication sync worker to accept ProcSignalBarrier and the worker's slot creation waits for the drop database to finish which leads to a deadlock. This happens because the tablesync worker holds interrupts while creating a slot. We prevent cancel/die interrupts while creating a slot in the table sync worker because it is possible that before the server finishes this command, a concurrent drop subscription happens which would complete without removing this slot and that leads to the slot existing until the end of walsender. However, the slot will eventually get dropped at the walsender exit time, so there is no danger of the dangling slot. This patch reallows cancel/die interrupts while creating a slot and modifies the test to wait for slots to become zero to prevent finding an ephemeral slot. The reported hang doesn't happen in PG14 as the drop database starts to wait for ProcSignalBarrier with PG15 (commits 4eb2176318 and e2f65f4255) but it is good to backpatch this till PG14 as it is not a good idea to prevent interrupts during a network call that could block indefinitely. Reported-by: Lakshmi Narayanan Sreethar Diagnosed-by: Andres Freund Author: Hou Zhijie Reviewed-by: Vignesh C, Amit Kapila Backpatch-through: 14, where it was introduced in commit 6b67d72b60 Discussion: https://postgr.es/m/CA+kvmZELXQ4ZD3U=XCXuG3KvFgkuPoN1QrEj8c-rMRodrLOnsg@mail.gmail.com
This commit is contained in:
parent
0a796b8b3e
commit
fd270b728b
@ -1064,16 +1064,9 @@ LogicalRepSyncTableStart(XLogRecPtr *origin_startpos)
|
|||||||
* Create a new permanent logical decoding slot. This slot will be used
|
* Create a new permanent logical decoding slot. This slot will be used
|
||||||
* for the catchup phase after COPY is done, so tell it to use the
|
* for the catchup phase after COPY is done, so tell it to use the
|
||||||
* snapshot to make the final data consistent.
|
* snapshot to make the final data consistent.
|
||||||
*
|
|
||||||
* Prevent cancel/die interrupts while creating slot here because it is
|
|
||||||
* possible that before the server finishes this command, a concurrent
|
|
||||||
* drop subscription happens which would complete without removing this
|
|
||||||
* slot leading to a dangling slot on the server.
|
|
||||||
*/
|
*/
|
||||||
HOLD_INTERRUPTS();
|
|
||||||
walrcv_create_slot(LogRepWorkerWalRcvConn, slotname, false /* permanent */ ,
|
walrcv_create_slot(LogRepWorkerWalRcvConn, slotname, false /* permanent */ ,
|
||||||
CRS_USE_SNAPSHOT, origin_startpos);
|
CRS_USE_SNAPSHOT, origin_startpos);
|
||||||
RESUME_INTERRUPTS();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Setup replication origin tracking. The purpose of doing this before the
|
* Setup replication origin tracking. The purpose of doing this before the
|
||||||
|
@ -163,9 +163,13 @@ $result = $node_subscriber->poll_query_until('postgres', $started_query)
|
|||||||
# subscriber is stuck on data copy for constraint violation.
|
# subscriber is stuck on data copy for constraint violation.
|
||||||
$node_subscriber->safe_psql('postgres', "DROP SUBSCRIPTION tap_sub");
|
$node_subscriber->safe_psql('postgres', "DROP SUBSCRIPTION tap_sub");
|
||||||
|
|
||||||
$result = $node_publisher->safe_psql('postgres',
|
# When DROP SUBSCRIPTION tries to drop the tablesync slot, the slot may not
|
||||||
"SELECT count(*) FROM pg_replication_slots");
|
# have been created, which causes the slot to be created after the DROP
|
||||||
is($result, qq(0),
|
# SUSCRIPTION finishes. Such slots eventually get dropped at walsender exit
|
||||||
|
# time. So, to prevent being affected by such ephemeral tablesync slots, we
|
||||||
|
# wait until all the slots have been cleaned.
|
||||||
|
ok( $node_publisher->poll_query_until(
|
||||||
|
'postgres', 'SELECT count(*) = 0 FROM pg_replication_slots'),
|
||||||
'DROP SUBSCRIPTION during error can clean up the slots on the publisher');
|
'DROP SUBSCRIPTION during error can clean up the slots on the publisher');
|
||||||
|
|
||||||
$node_subscriber->stop('fast');
|
$node_subscriber->stop('fast');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user