Re: [BUGS] BUG #13148: Unexpected deferred EXCLUDE constraint violation on derived table

From: Peter Geoghegan <pg(at)heroku(dot)com>
To: Andres Freund <andres(at)anarazel(dot)de>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, postgresql2(at)realityexists(dot)net, pgsql-bugs <pgsql-bugs(at)postgresql(dot)org>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [BUGS] BUG #13148: Unexpected deferred EXCLUDE constraint violation on derived table
Date: 2015-05-11 19:25:44
Message-ID: CAM3SWZTrvzKSBcZCRd5J1u8nfRfR5pNJMpj=PHss7zJdmVPiPw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-hackers

On Mon, May 11, 2015 at 9:47 AM, Andres Freund <andres(at)anarazel(dot)de> wrote:
> On 2015-05-10 16:01:53 -0400, Tom Lane wrote:
>> The cause of the problem seems to be that the UPDATE performs a HOT update
>> of the new tuple, leaving in this case a dead tuple at (0,2) that is HOT
>> updated by (0,3). When unique_key_recheck() is invoked for (0,2), it
>> believes, correctly, that it has to perform the recheck anyway ... but it
>> tells check_exclusion_constraint that the check is being performed for
>> (0,2). So the index search inside check_exclusion_constraint finds the
>> live tuple at (0,3) and thinks that is a conflict.
>
> Heh, it's curious that this wasn't found up until now. I also wonder if
> this might be related to the spurious violations Peter G. has been
> observing...

I don't think so. Speculative insertion relies on the assumption that
the speculatively inserted tuple isn't MVCC visible to other sessions.
I actually prototyped an implementation that avoided the historic
"unprincipled deadlocks" of exclusion constraints (a known limitation
since they were added), by making *UPDATE* also do a speculative
insertion, and by making even non-UPSERT INSERTs insert speculatively.

This almost worked, but when time came to back out of a speculative
insertion on an UPDATE due to a conflict from a concurrent session,
the implementation couldn't handle it - it was just a mess to try and
figure out how that was supposed to work with heap_update(), and so
that prototype was scrapped.

For the benefit of those not closely involved in the ON CONFLICT
project, I should point out that ON CONFLICT will not accept a
deferred index as an arbiter index.
--
Peter Geoghegan

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message v-brody 2015-05-11 22:46:30 BUG #13273: A query that returns wrongly labeled result instead of syntax error
Previous Message Andres Freund 2015-05-11 16:47:59 Re: [BUGS] BUG #13148: Unexpected deferred EXCLUDE constraint violation on derived table

Browse pgsql-hackers by date

  From Date Subject
Next Message David Steele 2015-05-11 19:38:30 Re: deparsing utility commands
Previous Message Abhijit Menon-Sen 2015-05-11 19:12:14 Re: a fast bloat measurement tool (was Re: Measuring relation free space)