Re: Kill a session - Mailing list pgsql-performance

From Mark Kirkwood
Subject Re: Kill a session
Date
Msg-id 44B6F3BF.1000602@paradise.net.nz
Whole thread Raw
In response to Re: Kill a session  ("Craig A. James" <cjames@modgraph-usa.com>)
Responses Re: Kill a session  ("Craig A. James" <cjames@modgraph-usa.com>)
List pgsql-performance
Craig A. James wrote:
>
>
> I'm back to my original question: How do you kill a runaway query
> without bringing down the whole database?  Is there really no answer to
> this?
>

As others have mentioned, pg_cancel_backend(pid) will stop query
execution by backend process id 'pid'.

While this is often enough, if you actually want to disconnect a backend
process then there is nothing to let you do this remotely. I recently
did a patch for Bizgres that just implements the
pg_terminate_backend(pid) function (currently #ifdef'ed out of the
codebase) as a contrib so it can be easily installed. See
http://pgfoundry.org/pipermail/bizgres-general/2006-May/000484.html

If you want to try it out, please read the README (it discusses possible
dangers associated with sending SIGTERM to backends). And I would
certainly be interested in hearing what level of success (or otherwise)
you have with it!

Best wishes

Mark



pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: Problem with bitmap-index-scan plan
Next
From: "Craig A. James"
Date:
Subject: Re: Kill a session