pgsql: checkpointer: Request checkpoint via latch instead of signal

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: checkpointer: Request checkpoint via latch instead of signal
Date: 2025-01-24 22:42:08
Message-ID: E1tbSNL-003L6n-Oy@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

checkpointer: Request checkpoint via latch instead of signal

The motivation for this change is that a future commit will use SIGINT for
another purpose (postmaster requesting WAL access to be shut down) and that
there no other signals that we could readily use (see code comment for the
reason why SIGTERM shouldn't be used). But it's also a tad nicer / more
efficient to use SetLatch(), as it avoids sending signals when checkpointer
already is busy.

Reviewed-by: Bertrand Drouvot <bertranddrouvot(dot)pg(at)gmail(dot)com>
Reviewed-by: Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com>
Discussion: https://postgr.es/m/kgng5nrvnlv335evmsuvpnh354rw7qyazl73kdysev2cr2v5zu@m3cfzxicm5kp

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/4d271e3ec25138be360b5a6ee40ec8bfa12459e0

Modified Files
--------------
src/backend/postmaster/checkpointer.c | 58 +++++++++++------------------------
1 file changed, 18 insertions(+), 40 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Jeff Davis 2025-01-24 22:59:27 pgsql: Add SQL function CASEFOLD().
Previous Message Tom Lane 2025-01-24 18:20:51 pgsql: Make jsonb casts to scalar types translate JSON null to SQL NULL