Re: Retry: Is this possible / slow performance?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Retry: Is this possible / slow performance?
Дата
Msg-id 27755.1107795836@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Retry: Is this possible / slow performance?  ("Joost Kraaijeveld" <J.Kraaijeveld@Askesis.nl>)
Ответы Re: Retry: Is this possible / slow performance?  (PFC <lists@boutiquenumerique.com>)
Список pgsql-performance
"Joost Kraaijeveld" <J.Kraaijeveld@Askesis.nl> writes:
> Two queries: one with "set enable_seqscan = on" , the other with "set enable_seqscan = off". The first query lasts
59403ms, the second query 31 ms ( the desc order variant has the same large difference: 122494 ms vs. 1297 ms). (for
thequery plans see below). 

The reason for the difference is that the mergejoin plan has a much
lower startup cost than the hash plan, and since you're only fetching
100 rows the startup cost is dominant.  IIRC the planner does make some
allowance for this effect when preparing a DECLARE CURSOR plan (ie,
it puts some weight on startup cost rather than considering only total
cost) ... but it's not so optimistic as to assume that you only want 100
out of an estimated 1 million+ result rows.

The best solution is probably to put a LIMIT into the DECLARE CURSOR,
so that the planner can see how much you intend to fetch.

            regards, tom lane

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

Предыдущее
От: "Joost Kraaijeveld"
Дата:
Сообщение: Retry: Is this possible / slow performance?
Следующее
От: Gaetano Mendola
Дата:
Сообщение: Re: Are JOINs allowed with DELETE FROM