Re: pgsql/src backend/tcop/postgres.c include/misc ...

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Hiroshi Inoue" <Inoue(at)tpf(dot)co(dot)jp>
Cc: pgsql-committers(at)postgresql(dot)org
Subject: Re: pgsql/src backend/tcop/postgres.c include/misc ...
Date: 2002-01-06 00:25:38
Message-ID: 18924.1010276738@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

"Hiroshi Inoue" <Inoue(at)tpf(dot)co(dot)jp> writes:
> Now I realize that 7.1 already changed the handling of
> die interrupts fundamentally. For example we can't kill
> the backend which is in a trouble with an infinite loop.
> Was it an intended change ?

Doesn't bother me a whole lot; I don't think that's what the die
interrupt is for. In my mind the main reason die() exists is to
behave reasonably when the system is being shut down and init has
sent SIGTERM to all processes. Shared memory needs to be left in
a good state because the postmaster is going to try to run a
checkpoint. (Otherwise we'd just SIGQUIT all the backends.)
Therefore, it's more important to have a clean shutdown than to
have an instantaneous one.

regards, tom lane

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message tgl 2002-01-06 00:37:45 pgsql/src/backend access/nbtree/nbtree.c catal ...
Previous Message Hiroshi Inoue 2002-01-05 23:59:34 Re: pgsql/src backend/tcop/postgres.c include/misc ...