Re: Adding nextval() to a select caused hang/very slow execution

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Eric Raskin <eraskin(at)paslists(dot)com>
Cc: pgsql-performance(at)lists(dot)postgresql(dot)org
Subject: Re: Adding nextval() to a select caused hang/very slow execution
Date: 2020-11-04 18:04:18
Message-ID: 1234726.1604513058@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Eric Raskin <eraskin(at)paslists(dot)com> writes:
> I have a strange situation where a base query completes in about 30 seconds
> but if I add a nextval() call to the select it never completes. There are
> other processes running that are accessing the same sequence, but I thought
> that concurrency was not an issue for sequences (other than skipped
> values).

Shouldn't be, probably ... but did you check to see if the query is
blocked on a lock? (See pg_stat_activity or pg_locks views.)

> The only change that
> causes it to be extremely slow or hang (can't tell which) is that I changed
> the select from:
> select unnest(....
> to
> select nextval('sbowner.idgen'), unnest(....

Without seeing the complete query it's hard to say much. But if
this isn't the topmost select list, maybe what's happening is that
the presence of a volatile function in a sub-select is defeating
some key plan optimization. Did you compare plain EXPLAIN (w/out
ANALYZE) output for the two cases, to see if the plan shape changes?

regards, tom lane

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Eric Raskin 2020-11-04 18:22:33 Re: Adding nextval() to a select caused hang/very slow execution
Previous Message Eric Raskin 2020-11-04 17:19:51 RE: Adding nextval() to a select caused hang/very slow execution