Re: 7.4 dramatically slower than 7.3?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: 7.4 dramatically slower than 7.3?
Дата
Msg-id 420.1081278777@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: 7.4 dramatically slower than 7.3?  (Nabil Sayegh <postgresql@e-trolley.de>)
Ответы Re: 7.4 dramatically slower than 7.3?  (Nabil Sayegh <postgresql@e-trolley.de>)
Список pgsql-novice
Nabil Sayegh <postgresql@e-trolley.de> writes:
> Stephan Szabo wrote:
>> One other possibility is that the planning is taking a really long time.
>> How long do explain (non-analyze) on the two systems take?  And how many
>> joins are there precisely?

> Yeah, that seems to be it.
> It takes ~
> (real) 3.776s on 7.4
> (real) 0.082s on 7.3
> measured with bash/time but shouldn't make a difference

> So the plan is actually better but takes much longer to ... plan, right?

Right.  In 7.3 your use of JOIN syntax limited the planner's search for
good plans; in 7.4 it doesn't do so (by default anyway).  You may care
to read http://www.postgresql.org/docs/7.4/static/explicit-joins.html
and experiment with altering JOIN_COLLAPSE_LIMIT (and/or reordering the
joins in your query).

            regards, tom lane

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

Предыдущее
От: Nabil Sayegh
Дата:
Сообщение: Re: 7.4 dramatically slower than 7.3?
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: 7.4 dramatically slower than 7.3?