Re: UPSERT - Mailing list pgsql-hackers

From Heikki Linnakangas
Subject Re: UPSERT
Date
Msg-id 45E845C4.6030000@enterprisedb.com
Whole thread Raw
In response to Re: UPSERT  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: UPSERT  ("Simon Riggs" <simon@2ndquadrant.com>)
List pgsql-hackers
Tom Lane wrote:
> Andrew Dunstan <andrew@dunslane.net> writes:
>> My instinct would be to follow your first strategy, i.e. detect which 
>> path is needed rather than try one and then if it fails do the other.
> 
> The very first thing you need to think about is how to solve the race
> condition problem, ie, two backends concurrently trying to insert
> identical data.  Until you have a plausible mechanism for that, the
> whole thing is pie-in-the-sky.

How about:

1. Insert new heap tuple
2. Try to insert the index tuple. If there's a duplicate tuple, lock the 
existing tuple instead of throwing an error.
3. If there was no duplicate, we're done.

4. Otherwise, kill the new tuple inserted in step 1, by setting it's 
xmin to InvalidTransactionId.
5. Perform the UPDATE on the existing tuple.

This requires one change to the indexam api: a duplicate key violation 
needs to lock the existing tuple instead of throwing an error.

--   Heikki Linnakangas  EnterpriseDB   http://www.enterprisedb.com


pgsql-hackers by date:

Previous
From: "Pavan Deolasee"
Date:
Subject: Re: HOT - whats next ?
Next
From: "Florian G. Pflug"
Date:
Subject: Re: UPSERT