Re: Any idea for serializing INSERTING SERIAL column? - Mailing list pgsql-hackers

From Josh Kupershmidt
Subject Re: Any idea for serializing INSERTING SERIAL column?
Date
Msg-id BANLkTinMqeZzgrqmCf4wF1dMjU42+rf98A@mail.gmail.com
Whole thread Raw
In response to Any idea for serializing INSERTING SERIAL column?  (Tatsuo Ishii <ishii@postgresql.org>)
Responses Re: Any idea for serializing INSERTING SERIAL column?
List pgsql-hackers
On Tue, May 31, 2011 at 8:08 PM, Tatsuo Ishii <ishii@postgresql.org> wrote:
[snip]
> In summary,
>
> 1) "LOCK table foo" cannot be used because of conflict with autovacuum
> 2) "LOCK sequence" just doesn't work
> 3) "SELECT 1 FROM LOCK sequece" fails after XID wraparound
>
> If you have other idea to serialize concurrent INSERT to a table, I
> would like to hear from you.

Sorry, I'm not real familiar with pgpool, but have you thought about
using an advisory lock on the target table, instead of a "real" lock
(SELECT ... FOR UPDATE / LOCK table)? An advisory lock should not
interfere with autovacuum. Obviously, this would only work if all the
INSERTs in your example were coming from a single application (i.e.
pgpool) which would honor the advisory lock.

Josh


pgsql-hackers by date:

Previous
From: David Fetter
Date:
Subject: Re: creating CHECK constraints as NOT VALID
Next
From: Tatsuo Ishii
Date:
Subject: Re: Any idea for serializing INSERTING SERIAL column?