Re: unique constraint violations - Mailing list pgsql-general

From pg noob
Subject Re: unique constraint violations
Date
Msg-id CAPNY-2VbWEsHTK7=FUf-yjQ03XZd9fvyR9NjaQOYXHExLWFKzw@mail.gmail.com
Whole thread Raw
In response to Re: unique constraint violations  (Steven Schlansker <steven@likeness.com>)
List pgsql-general
Thank you for the suggestion Steven.
Originally I did implement a solution using savepoints and that worked as a way to keep all the work done on the transaction leading up to the constraint violation, but errors would still show up in the Postgres log.  With this new function approach there are no errors in the log.

As far as the serialization, that might be an option, but it probably would require substantial work to redesign our db access patterns.
Also we're still currently on 8.4 (but hope to upgrade soon!)


On Wed, Jun 26, 2013 at 2:39 PM, Steven Schlansker <steven@likeness.com> wrote:

On Jun 26, 2013, at 11:04 AM, pg noob <pgnube@gmail.com> wrote:

>
> Hi all,
>
> There are some places in our application where unique constraint violations are difficult to avoid due to multithreading.
> What we've done in most places to handle this is to retry in a loop.
>
> Generally it starts by checking if a value already exists, if not - try to insert it, which may cause a unique violation, and if a constraint violation occurs, retrying the process again.
>
> The trouble that we have with this approach is twofold.
> First, it causes errors to show up in the Postgres log about unique constraint violations.  These errors are misleading to our support folks because they look like errors but in fact they are handled (usually) by retries in the code and don't cause any real problems.  We'd like these to be handled without causing errors to show up in the logs.
>

We have solved this problem by leveraging the new SSI feature in Postgres 9.1 (http://wiki.postgresql.org/wiki/SSI)

By running your insert / update inside of a serializable transaction, instead of getting unique failures, you get serialization failures.  These are "expected" and we just retry them.  Much less confusing log clutter, and no need to differentiate between "expected" and "unexpected" unique violations.

> Second, in some cases we've done a lot of work on a transaction before hitting a unique constraint violation.
> If this happens the entire transaction gets rolled back and all the work leading up to the constraint violation has to be redone.
>
> As a work around for this, I have proposed the following function which will execute an arbitrary query (with no results returned) and catch a unique constraint violation without causing errors to show up in the postgres log or the transaction to get rolled back.  Now what the code does is to call this function with the query to execute.  If a unique constraint violation happens, the caller gets a non-zero return code back and this can be handled but the DB transaction does not get rolled back.
>

The approach we took wouldn't solve this problem for you.  Serialization failures also require restarting the transaction.


You could also consider savepoints as a more lightweight way of undoing the "bad" updates -- http://www.postgresql.org/docs/9.2/interactive/sql-savepoint.html


Sounds like you might have a slightly different use case and our approach won't help you much, but I figured I'd mention it.



pgsql-general by date:

Previous
From: Steven Schlansker
Date:
Subject: Re: unique constraint violations
Next
From: John R Pierce
Date:
Subject: installer woes, 9.1 on windows 2008 R2