pgsql: Rework shutdown callback of archiver modules

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Rework shutdown callback of archiver modules
Дата
Msg-id E1ol1Iu-0031C0-UZ@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Rework shutdown callback of archiver modules

As currently designed, with a callback registered in a ERROR_CLEANUP
block, the shutdown callback would get called twice when updating
archive_library on SIGHUP, which is something that we want to avoid to
ease the life of extension writers.

Anyway, an ERROR in the archiver process is treated as a FATAL, stopping
it immediately, hence there is no need for a ERROR_CLEANUP block.
Instead of that, the shutdown callback is not called upon
before_shmem_exit(), giving to the modules the opportunity to do any
cleanup actions before the server shuts down its subsystems.

While on it, this commit adds some testing coverage for the shutdown
callback.  Neither shell_archive nor basic_archive have been using it,
and one is added to shell_archive, whose trigger is checked in a TAP
test through a shutdown sequence.

Author: Nathan Bossart, Bharath Rupireddy
Reviewed-by: Kyotaro Horiguchi, Michael Paquier
Discussion: https://postgr.es/m/20221015221328.GB1821022@nathanxps13
Backpatch-through: 15

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9668c4a6618cc4a7a94f4bc0ad5685dd596bab63

Modified Files
--------------
doc/src/sgml/config.sgml                  |  5 +++--
src/backend/postmaster/pgarch.c           | 27 ++++++++-------------------
src/backend/postmaster/shell_archive.c    |  8 ++++++++
src/test/recovery/t/020_archive_status.pl | 14 ++++++++++++++
4 files changed, 33 insertions(+), 21 deletions(-)


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

Предыдущее
От: Tatsuo Ishii
Дата:
Сообщение: pgsql: Enhance make_ctags and make_etags.
Следующее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: Remove pg_backup_start_callback and reuse similar code