Re: Fwd: Query with high planning time compared to execution time

Поиск
Список
Период
Сортировка
От legrand legrand
Тема Re: Fwd: Query with high planning time compared to execution time
Дата
Msg-id 1541199100540-0.post@n3.nabble.com
обсуждение исходный текст
Ответ на Re: Fwd: Query with high planning time compared to execution time  (Tomas Vondra <tomas.vondra@2ndquadrant.com>)
Список pgsql-performance
Tomas Vondra-4 wrote
> On 11/02/2018 10:36 AM, Richard Lee wrote:
> [...]
> 
>> What are my other options to improve the query planning time?
>> 
> 
> Can you do a bit of profiling, to determine which part of the query
> planning process is slow here? 
> [...]

After planning profiling, (or in //), you can try to limit the number of
plans 
that the planner has to evaluate:

setting enable_mergejoin to off, or some others from 
https://www.postgresql.org/docs/10/static/runtime-config-query.html
but you will have to check that the chosen plan is still good

An other way is maybe reducing the number of indexes (you have so many 
ones ...). Usually, needed indexes are PK, UK, indexes for FK, and a "few" 
more.

Could you provide the SQL query to check that ?

Regards
PAscal  




--
Sent from: http://www.postgresql-archive.org/PostgreSQL-performance-f2050081.html


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

Предыдущее
От: Tomas Vondra
Дата:
Сообщение: Re: Fwd: Query with high planning time compared to execution time
Следующее
От: Richard Lee
Дата:
Сообщение: Re: Fwd: Query with high planning time compared to execution time