Re: transaction timeout

From: Scott Marlowe <smarlowe(at)g2switchworks(dot)com>
To: Magnus Hagander <mha(at)sollentuna(dot)net>
Cc: Dr NoName <spamacct11(at)yahoo(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: transaction timeout
Date: 2005-07-26 17:58:37
Message-ID: 1122400717.15145.81.camel@state.g2switchworks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, 2005-07-26 at 12:41, Magnus Hagander wrote:
> > > > That said, I have seen some folks post about writing a
> > perl or shell
> > > > script that runs every x minutes looking for connections
> > that have
> > > > been idle for > a certain amount of time and kill the backend
> > > > associated with it (sigterm, not -9...)
> > >
> > > what are the implications of killing a postmaster process?
> >
> > A Sigterm is generally considered safe. It's -9 and its ilk
> > that you need to be wary of.
>
> No it's not. See the archives.
> The only *safe* way to do it ATM is to restart the database. SIGTERM may
> leave orphaned locks or such things in the system. (Incidentally, -9 on
> a single backend should be safe I believe. The postmaster will tell all
> concurrent connections to abort and restart. It's not nice, but it
> should be safe - should perform onrmal recovery same as if you pull the
> plug)

Really? I was under the impression that doing a "kill <backendpid>" on
an idle connection would clean up those things. Was that a discussion
on hackers that brought this up? And if so, what was the time period,
I'd like to read through it.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Magnus Hagander 2005-07-26 18:07:36 Re: transaction timeout
Previous Message Tom Lane 2005-07-26 17:56:51 Re: Trigger disactivation and SELECT WAITING