Re: sequence skips 30 values, how?

Поиск
Список
Период
Сортировка
От Bill Moran
Тема Re: sequence skips 30 values, how?
Дата
Msg-id 20070131085146.c891c420.wmoran@collaborativefusion.com
обсуждение исходный текст
Ответ на sequence skips 30 values, how?  (Geoffrey <esoteric@3times25.net>)
Список pgsql-general
In response to Geoffrey <esoteric@3times25.net>:
> We are trying to track down an issue with our PostgreSQL application.
> We are running PostgreSQL 7.4.13 on Red Hat Enterprise ES 3.
>
> We have a situation where the postgres backend process drops core and
> dies.  We've tracked this to an unusual situation where a sequence value
> that is being created during the process that is causing the core file
> generation.  The thing that is bizarre is that the sequence value skips
> 30+ entries.
>
> How is this even possible?  Any suggestions would be greatly appreciated.

Don't know why your workers are dropping cores: backtraces and the like
would probably help sort that out.

However, when a transaction requests a new sequence, then aborts (for
whatever reason) that sequence isn't going to back up.  My understanding
is that the overhead to making sequences transaction aware and able to
avoid gaps is more than anyone has determined the benefit to be.

What is the problem with gaps?  If you're afraid of running out of numbers,
switch to BIGSERIAL.

--
Bill Moran
Collaborative Fusion Inc.

В списке pgsql-general по дате отправления:

Предыдущее
От: Markus Schiltknecht
Дата:
Сообщение: Re: sequence skips 30 values, how?
Следующее
От: "Merlin Moncure"
Дата:
Сообщение: Re: Any Plans for cross database queries on the same server?