Re: BUG #14821: idle_in_transaction_session_timeout sometimes gets ignored when statement timeout is pending

From: Lukas Fittl <lukas(at)fittl(dot)com>
To: Andres Freund <andres(at)anarazel(dot)de>, pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #14821: idle_in_transaction_session_timeout sometimes gets ignored when statement timeout is pending
Date: 2017-09-21 01:39:23
Message-ID: CAP53Pkwyrw_4funJh7V=2C2OmTp+9VK8vp=xkwcqTj5j1KS60g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Hi,

On Wed, Sep 20, 2017 at 6:29 PM, Andres Freund <andres(at)anarazel(dot)de> wrote:

> Hi,
>
> On 2017-09-21 01:09:56 +0000, lukas(at)fittl(dot)com wrote:
> > It seems to me that ProcessInterrupts() should check for the idle in
> > transaction timeout first, since it short-circuits and returns early if
> > QueryCancelPending && QueryCancelHoldoffCount != 0 before even getting
> > there.
>
> Indeed - although I wonder if the correct fix isn't to move things
> around, but to instead avoid the order dependency changing the short
> circuit logic so that there's no early return. Like e.g.
>
> if (QueryCancelPending && QueryCancelHoldoffCount != 0)
> {
> /* rearm */
> }
> else if (QueryCancelPending)
> {
> /* handle interrupt */
> }
>
> there's really no good reason for the return right now, and it's bound
> to create more bugs in the future.

That seems like a reasonable approach and a good idea.

I'll take a stab at making a patch for this tonight and send it over to
hackers then.

Best,
Lukas

--
Lukas Fittl

Skype: lfittl
Phone: +1 415 321 0630

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Lukas Fittl 2017-09-21 03:27:05 Re: [BUGS] BUG #14821: idle_in_transaction_session_timeout sometimes gets ignored when statement timeout is pending
Previous Message Andres Freund 2017-09-21 01:29:31 Re: BUG #14821: idle_in_transaction_session_timeout sometimes gets ignored when statement timeout is pending