Re: pg_cancel_backend and pg_terminate_backend

From: Rui DeSousa <rui(at)crazybean(dot)net>
To: "Wetmore, Matthew (CTR)" <Matthew(dot)Wetmore(at)express-scripts(dot)com>
Cc: Wells Oliver <wells(dot)oliver(at)gmail(dot)com>, pgsql-admin <pgsql-admin(at)postgresql(dot)org>
Subject: Re: pg_cancel_backend and pg_terminate_backend
Date: 2023-04-20 00:48:26
Message-ID: FBABAD0E-4E87-4A6B-A39A-7EB4E9E26979@crazybean.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

> On Apr 19, 2023, at 8:37 PM, Rui DeSousa <rui(at)crazybean(dot)net> wrote:
>
>
>
>> On Apr 19, 2023, at 3:51 PM, Wetmore, Matthew (CTR) <Matthew(dot)Wetmore(at)express-scripts(dot)com <mailto:Matthew(dot)Wetmore(at)express-scripts(dot)com>> wrote:
>>
>> I usually prefer pg_cancel_backend because it seems.. nicer, but lately I've had a troublesome user who leaves transactions open and I've scripted up a call to pg_terminate_backend after 60 minutes in an idle transaction. It works well.
>>
>> Question: is there any server impact beyond that user's transaction when calling pg_terminate_backend?
>
> I would advise against doing that for application connections. What happens depends on the application or pooling tech used. It could generate errors in the application as the connection is no longer valid yet the application might still being maintaining data structures for the given connection.
>
> I.e.. It also introduces a race condition; the application picks up the connection from the connection pool at the same time the connection is terminated on the backend; the end result is an error propagating up to end user or the application being require to catch the error and retry, etc.
>
> I would continue to terminate non application connections without concern. If it’s an issue, fix the application/pooling config; terminating backend sessions is a bandaid with other issues.

One more thought if it wasn’t apparent already. Use TCP keep alive -- to identify truly abandoned idle sessions and have those connection torn down.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message John Scalia 2023-04-20 01:01:19 Re: PgAdmin cannot locate my server
Previous Message Rui DeSousa 2023-04-20 00:37:08 Re: pg_cancel_backend and pg_terminate_backend