Re: performance regression with 9.2

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: performance regression with 9.2
Дата
Msg-id 8789.1352755597@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: performance regression with 9.2  (Willem Leenen <willem_leenen@hotmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Willem Leenen
Дата:
Сообщение: Re: performance regression with 9.2
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: PostreSQL v9.2 uses a lot of memory in Windows XP