pgsql: Fix LOCK_TIMEOUT handling during parallel apply. - Mailing list pgsql-committers

From Amit Kapila
Subject pgsql: Fix LOCK_TIMEOUT handling during parallel apply.
Date
Msg-id E1v1H4d-002FwI-1w@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix LOCK_TIMEOUT handling during parallel apply.

Previously, the parallel apply worker used SIGINT to receive a graceful
shutdown signal from the leader apply worker. However, SIGINT is also used
by the LOCK_TIMEOUT handler to trigger a query-cancel interrupt. This
overlap caused the parallel apply worker to miss LOCK_TIMEOUT signals,
leading to incorrect behavior during lock wait/contention.

This patch resolves the conflict by switching the graceful shutdown signal
from SIGINT to SIGUSR2.

Reported-by: Zane Duffield <duffieldzane@gmail.com>
Diagnosed-by: Zhijie Hou <houzj.fnst@fujitsu.com>
Author: Hayato Kuroda <kuroda.hayato@fujitsu.com>
Reviewed-by: Amit Kapila <amit.kapila16@gmail.com>
Backpatch-through: 16, where it was introduced
Discussion: https://postgr.es/m/CACMiCkXyC4au74kvE2g6Y=mCEF8X6r-Ne_ty4r7qWkUjRE4+oQ@mail.gmail.com

Branch
------
REL_18_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/37fc5de438b423f34ba8551a9902a52963be98f5

Modified Files
--------------
src/backend/postmaster/interrupt.c                    |  5 ++---
src/backend/replication/logical/applyparallelworker.c | 17 ++++++++++++-----
src/backend/replication/logical/launcher.c            |  4 ++--
3 files changed, 16 insertions(+), 10 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: pgsql: Fix meson build with -Duuid=ossp when using version older than 0
Next
From: John Naylor
Date:
Subject: pgsql: Update GB18030 encoding from version 2000 to 2022