Re: No Callbacks on FATAL

Поиск
Список
Период
Сортировка
От Andres Freund
Тема Re: No Callbacks on FATAL
Дата
Msg-id 20230112005713.zcv7akqqj5qaahx2@awork3.anarazel.de
обсуждение исходный текст
Ответ на Re: No Callbacks on FATAL  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: No Callbacks on FATAL  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Hi,

On 2023-01-11 18:10:33 -0500, Tom Lane wrote:
> Ed Behn <ed@behn.us> writes:
> > I'm using a callback function that is called when a memory context is
> > deleted to remove a temporary file. This works fine when the transaction
> > ends normally or raises an ERROR. However, when a FATAL event happens, the
> > callback is not run. Is this a bug or intended behaviour?
>
> It's intended behavior, and I seriously doubt that it ever worked
> differently.

Hm? MemoryContextDelete() unconditionally calls the
callbacks. ShutdownPostgres() calls AbortOutOfAnyTransaction(). So if there's
an ongoing transaction, we'll call the reset callbacks on TopMemoryContext and
its children.

Of course that doesn't mean we'll delete all existing contexts...


> > It seems to me that callbacks should be run in the event of a FATAL event
> > in order to clean up any lingering issues.
>
> They'd be far more likely to cause issues than cure them.  Or at least
> that's the design assumption.  If you really need something here, put
> it in an on_proc_exit callback not a memory context callback.

Or, depending on the use case, a transaction callback.

It's really hard to know what precisely to suggest, without knowing a good bit
more about the intended usecase.


Greetings,

Andres Freund



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

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: pgsql: Add new GUC createrole_self_grant.
Следующее
От: Nathan Bossart
Дата:
Сообщение: Re: low wal_retrieve_retry_interval causes missed signals on Windows