Re: performance regression with 9.2 - Mailing list pgsql-performance

From Tom Lane
Subject Re: performance regression with 9.2
Date
Msg-id 8789.1352755597@sss.pgh.pa.us
Whole thread Raw
In response to Re: performance regression with 9.2  (Willem Leenen <willem_leenen@hotmail.com>)
List pgsql-performance
Willem Leenen <willem_leenen@hotmail.com> writes:
> To me, i see a mismatch between the optimizer and the actual records
> retrieved in the fast SQL as well, so plan instability is a realistic
> scenario.

Well, the rowcount estimates for a recursive union are certainly
pretty bogus, but those are the same either way.  The reason this looks
like a bug and not just statistical issues is that the join inside the
recursive union is done as a hash, even though that's much more
expensive (according to the estimates, not reality) than a nestloop.
Presumably the planner is failing to even consider a
nestloop-with-inner-indexscan join there, else it would have picked that
type of plan.  Why it's failing is as yet unclear.

            regards, tom lane


pgsql-performance by date:

Previous
From: Willem Leenen
Date:
Subject: Re: performance regression with 9.2
Next
From: Craig Ringer
Date:
Subject: Re: PostreSQL v9.2 uses a lot of memory in Windows XP