Re: Strange duplicate key violation error - Mailing list pgsql-general

From Richard Huxton
Subject Re: Strange duplicate key violation error
Date
Msg-id 4684AB60.5090201@archonet.com
Whole thread Raw
In response to Strange duplicate key violation error  (Casey Duncan <casey@pandora.com>)
List pgsql-general
Casey Duncan wrote:
> There are in fact one of these tables for each schema, each one contains
> exactly one row (the "log" in the name is a bit misleading, these just
> contain the current replica state, not a running log).

> 2007-06-28 08:53:54.937 PDT [d:radio_reports_new u:slony s:4683d86f.3681
> 3] ERROR:  duplicate key violates unique constraint "replica_sync_log_pkey"

> I've never seen this error before in millions of updates to this table.
> It confuses me because the columns indexed by the primary key *are not*
> being modified, so how could the update violate the constraint?
> Furthermore there is only one record in the table anyway.
>
> The updates are performed by daemons that are in charge of replicating
> the changes for one database each. So there is no concurrent updating on
> this table, only one process updates it.

OK, so a single slony process is updating a single row and causing a
pkey violation. Has this happened only the once?

> The error caused the daemon to pause, so I restarted it. The error did
> not recur the second time.
>
> fwiw this is postgres 8.1.8 on Linux.

Well, 8.1.9 is the latest release, but I don't see anything concerning this.

Two things occur to me:
1. Slony adds its own triggers to assorted tables. I don't see how it
could make a difference, but it might be worth keeping in mind.
2. Primary keys are enforced by unique btree indexes and you could have
come across a strange corner-case where it's not updating correctly. If
it's only happened the once, that will make it very hard to track down.

If it doesn't do it again in the next day or so, I'd be inclined to
REINDEX the table, in case it is in a slightly odd state.

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: "A. Kretschmer"
Date:
Subject: Re: date time function
Next
From: Vincenzo Romano
Date:
Subject: Re: Execution variability