[COMMITTERS] pgsql: Fix race conditions in replication slot operations

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема [COMMITTERS] pgsql: Fix race conditions in replication slot operations
Дата
Msg-id E1da3mb-00089M-Dv@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix race conditions in replication slot operations

It is relatively easy to get a replication slot to look as still active
while one process is in the process of getting rid of it; when some
other process tries to "acquire" the slot, it would fail with an error
message of "replication slot XYZ is active for PID N".

The error message in itself is fine, except that when the intention is
to drop the slot, it is unhelpful: the useful behavior would be to wait
until the slot is no longer acquired, so that the drop can proceed.  To
implement this, we use a condition variable so that slot acquisition can
be told to wait on that condition variable if the slot is already
acquired, and we make any change in active_pid broadcast a signal on the
condition variable.  Thus, as soon as the slot is released, the drop
will proceed properly.

Reported by: Tom Lane
Discussion: https://postgr.es/m/11904.1499039688@sss.pgh.pa.us
Authors: Petr Jelínek, Álvaro Herrera

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9915de6c1cb2c9b87f5f504c97832cdf3a809753

Modified Files
--------------
src/backend/replication/logical/logicalfuncs.c |   2 +-
src/backend/replication/slot.c                 | 122 ++++++++++++++++++-------
src/backend/replication/slotfuncs.c            |  34 ++++---
src/backend/replication/walsender.c            |   6 +-
src/include/replication/slot.h                 |  10 +-
5 files changed, 118 insertions(+), 56 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: [COMMITTERS] pgsql: Fix partitioning crashes during error reporting.
Следующее
От: Alvaro Herrera
Дата:
Сообщение: [COMMITTERS] pgsql: Make PostgresNode easily subclassable