Re: sequence skips 30 values, how? - Mailing list pgsql-general

From Bill Moran
Subject Re: sequence skips 30 values, how?
Date
Msg-id 20070131085146.c891c420.wmoran@collaborativefusion.com
Whole thread Raw
In response to sequence skips 30 values, how?  (Geoffrey <esoteric@3times25.net>)
List 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 by date:

Previous
From: Markus Schiltknecht
Date:
Subject: Re: sequence skips 30 values, how?
Next
From: "Merlin Moncure"
Date:
Subject: Re: Any Plans for cross database queries on the same server?