Re: pgsql: Improve tests for postmaster death in auxiliary processes.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: pgsql: Improve tests for postmaster death in auxiliary processes.
Дата
Msg-id 1194.1336663181@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: pgsql: Improve tests for postmaster death in auxiliary processes.  (Peter Geoghegan <peter@2ndquadrant.com>)
Список pgsql-committers
Peter Geoghegan <peter@2ndquadrant.com> writes:
> On 10 May 2012 05:55, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> I had already removed the unconditional
>> PostmasterIsAlive calls in bgwriter and pgstat in previous patches, but
>> forgot that WL_POSTMASTER_DEATH is supposed to be treated as untrustworthy
>> (per comment in unix_latch.c); so adjust those two cases to match.

> I'm not sure why we're pushing the responsibility to call
> PostmasterIsAlive() onto latch clients. Why not just do it within
> WaitLatchOrSocket just as the WL_POSTMASTER_DEATH bit is set? It's not
> as if someone could conceivably care that the Postmaster might have
> died, but not enough to want to be sure.

Hmm ... yeah, that would simplify the API if we didn't have to have the
caveat about the bits being untrustworthy.  The only objection I can see
is that this might represent a useless PostmasterIsAlive call for those
callers that aren't inspecting the result bit.  However, at this point
we've more or less decided that those callers aren't
performance-critical anyway; anyone who thinks they are should be
rearranging their code to remove the separate PostmasterIsAlive calls.

So, yeah, seems like a good idea.  Any objections out there?

            regards, tom lane

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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: Re: pgsql: Improve tests for postmaster death in auxiliary processes.
Следующее
От: Bruce Momjian
Дата:
Сообщение: pgsql: Release notes adjustments from Erik Rijkers