Re: Never kill -9 postgres client processes on Linux... but why not?

From: Ron <ronljohnsonjr(at)gmail(dot)com>
To: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Never kill -9 postgres client processes on Linux... but why not?
Date: 2018-04-19 07:03:33
Message-ID: 418d6fe1-a96a-9299-f173-09a804d0b7b3@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On 04/18/2018 11:53 PM, Mark Kirkwood wrote:
> Hi,
>
>
> On 19/04/18 16:40, Wells Oliver wrote:
>> Had an issue tonight where I had a bunch of stalled queries from a client
>> connection and I just... could... not... kill... them. We disconnected
>> the client machine, turned it off, picked it up, shook it around, yelled
>> at it, and still these idle queries remained in pg_stat_activity.
>>
>> Then I did select pg_cancel_backend(pid) from pg_stat_activity where
>> client_addr = '..' and they just would... not... go.. away.
>>
>> So me being the big smart system administrator guy with shell access, I
>> logged in, and did a kill -9 xxx where xxx was the sme pid from the
>> pg_stat_activity result and... they finally went away!
>>
>> Felt good about myself until I realized, well, so did every other
>> connection, and in fact PG momentarily went into recovery mode.
>>
>> Everything was fine, but a) why is it a bad idea to kill -9 a client PG
>> process, but pg_cancel_backend() is OK-- and b) what to do about stalled
>> PG queries that won't die when you disconnect AND when you
>> pg_cancel_backend() them?
>>
>
> Did you try pg_terminate_backend? I'm guessing that might not have worked
> either...but is worth it trying before belting them with kill -9!

+1 to pg_terminate_backend.  On the rare occasion pg_cancel_backend doesn't
work, I hit the pid with pg_terminate_backend, and that always works.

--
Angular momentum makes the world go 'round.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Akshay Ballarpure 2018-04-19 07:37:50 Re: pg_upgrade help
Previous Message Tim Cross 2018-04-19 05:23:44 Re: Never kill -9 postgres client processes on Linux... but why not?