Re: Help interpreting explain analyze output

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Help interpreting explain analyze output
Дата
Msg-id 28313.1092593619@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Help interpreting explain analyze output  (Ole Tange <postgresql.org@tange.dk>)
Ответы Re: Help interpreting explain analyze output
Список pgsql-performance
Ole Tange <postgresql.org@tange.dk> writes:
> As I read it the output tells me what was done during the milliseconds:

No, you have a fundamental misconception here.  The notation means that
the first output row from a plan step was delivered after X
milliseconds, and the last row after Y milliseconds.

The "gap" you are looking at is the time to do the Sort (since a sort
can't deliver the first output row until it's finished the sort).

It is gonna take a while to sort 175000 rows ... but possibly increasing
sort_mem would help.

            regards, tom lane

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

Предыдущее
От: Ole Tange
Дата:
Сообщение: Help interpreting explain analyze output
Следующее
От: Richard Poole
Дата:
Сообщение: Re: Help interpreting explain analyze output