Re: Any idea for serializing INSERTING SERIAL column?

Поиск
Список
Период
Сортировка
От Josh Kupershmidt
Тема Re: Any idea for serializing INSERTING SERIAL column?
Дата
Msg-id BANLkTinMqeZzgrqmCf4wF1dMjU42+rf98A@mail.gmail.com
обсуждение исходный текст
Ответ на Any idea for serializing INSERTING SERIAL column?  (Tatsuo Ishii <ishii@postgresql.org>)
Ответы Re: Any idea for serializing INSERTING SERIAL column?  (Tatsuo Ishii <ishii@postgresql.org>)
Список 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 по дате отправления:

Предыдущее
От: David Fetter
Дата:
Сообщение: Re: creating CHECK constraints as NOT VALID
Следующее
От: Tatsuo Ishii
Дата:
Сообщение: Re: Any idea for serializing INSERTING SERIAL column?