pgsql: Add built-in ERROR handling for archive callbacks. - Mailing list pgsql-committers

From Nathan Bossart
Subject pgsql: Add built-in ERROR handling for archive callbacks.
Date
Msg-id E1rrrL0-000EEy-LO@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Add built-in ERROR handling for archive callbacks.

Presently, the archiver process restarts when an archive callback
ERRORs.  To avoid this, archive module authors can use sigsetjmp(),
manage a memory context, etc., but that requires a lot of extra
code that will likely look roughly the same between modules.  This
commit adds basic archive callback ERROR handling to pgarch.c so
that module authors won't ordinarily need to worry about this.
While this built-in handler attempts to clean up anything that an
archive module could conceivably have left behind, it is possible
that some modules are doing unexpected things that require
additional cleanup.  Module authors should be sure to do any extra
required cleanup in a PG_CATCH block within the archiving callback.

The archiving callback is now called in a short-lived memory
context that the archiver process resets between invocations.  If a
module requires longer-lived storage, it must maintain its own
memory context.

Thanks to these changes, the basic_archive module can be greatly
simplified.

Suggested-by: Andres Freund
Reviewed-by: Andres Freund, Yong Li
Discussion: https://postgr.es/m/20230217215624.GA3131134%40nathanxps13

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c627d944e6c2620fb3b28f2e4b27e19212f84045

Modified Files
--------------
contrib/basic_archive/basic_archive.c | 134 ++--------------------------------
doc/src/sgml/archive-modules.sgml     |  11 ++-
src/backend/archive/shell_archive.c   |   5 --
src/backend/postmaster/pgarch.c       |  93 ++++++++++++++++++++++-
4 files changed, 107 insertions(+), 136 deletions(-)


pgsql-committers by date:

Previous
From: Masahiko Sawada
Date:
Subject: pgsql: Improve eviction algorithm in ReorderBuffer using max-heap for m
Next
From: Masahiko Sawada
Date:
Subject: Re: pgsql: Implement pg_wal_replay_wait() stored procedure