Re: does max_connections affect the query planner

Поиск
Список
Период
Сортировка
От Jeff Janes
Тема Re: does max_connections affect the query planner
Дата
Msg-id CAMkU=1zewgepVrH6YcSzWKBo220oRJX4iV6U8_7r+RRSG9Q9Ew@mail.gmail.com
обсуждение исходный текст
Ответ на does max_connections affect the query planner  (Bob Jolliffe <bobjolliffe@gmail.com>)
Список pgsql-performance

On Tue, Sep 17, 2019 at 4:41 AM Bob Jolliffe <bobjolliffe@gmail.com> wrote:
Hi

We are trying to diagnose why postgres might be making poor decisions
regarding query plans.  One theory is that it does not assume it has
the memory suggested in effective_cache_size. 

We do know that max_connections is set quite high (600) when we don't
really expect more than 100.  I wonder does the planner take
max_connections x work_mem into account when considering the memory it
has potentially available?


No, it doesn't try to guess how many connections might be sharing effective_cache_size.  It assumes the entire thing is available to any use at any given time.

But it is only used for cases where a single query is going to be accessing blocks over and over again--it estimates that the block will still be in cache on subsequent visits.  But this doesn't work for blocks visited repeatedly in different queries, either on the same connection or different ones.  There is no notion that some objects might be hotter than others, other than within one query.
 
Cheers,

Jeff

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

Предыдущее
От: Bob Jolliffe
Дата:
Сообщение: Re: does max_connections affect the query planner
Следующее
От: Stephen Conley
Дата:
Сообщение: Question regarding fast-hashing in PGSQL