Re: [GENERAL] join_collapse_limit = 14

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [GENERAL] join_collapse_limit = 14
Дата
Msg-id 25845.1483809942@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [GENERAL] join_collapse_limit = 14  (Andreas Joseph Krogh <andreas@visena.com>)
Ответы Re: [GENERAL] join_collapse_limit = 14
Список pgsql-general
Andreas Joseph Krogh <andreas@visena.com> writes:
> På lørdag 07. januar 2017 kl. 17:48:49, skrev Tom Lane <tgl@sss.pgh.pa.us
> <mailto:tgl@sss.pgh.pa.us>>:
>  If you've got just one problem query, it might be worth your time to take
>  note of the optimal join order (as seen in EXPLAIN when a good plan is
>  chosen) and rearrange the query so that the syntactic join order matches
>  that.  Then you should get the same plan even when join_collapse_limit is
>  small.

> Will geqo kick if if join_collapse_limit =4 and there are many more joins or
> will the planner just stop trying to rearrange JOINs after this limit?

geqo_threshold applies to the size of the join subproblems that exist
after flattening is done, or not done, according to join_collapse_limit
and from_collapse_limit: if a subproblem is >= geqo_threshold relations
then it's planned via geqo, else the normal search.  So if geqo_threshold
is more than join_collapse_limit then it's impossible for a JOIN nest to
result in use of the geqo code.

> In any case; I assume you're suggesting doing something like "SET LOCAL
> join_collapse_limit=<some-value>" in the same transaction so this doesn't have
> to be a system-wide setting?

Right, there's no reason not to set it locally in your session for
experimental purposes.  I'd just be nervous about turning it up globally
for production without having checked all your queries ...

            regards, tom lane


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

Предыдущее
От: Andreas Joseph Krogh
Дата:
Сообщение: Re: [GENERAL] join_collapse_limit = 14
Следующее
От: Andreas Joseph Krogh
Дата:
Сообщение: Re: [GENERAL] join_collapse_limit = 14