Re: slow plan for min/max

Поиск
Список
Период
Сортировка
От Greg Stark
Тема Re: slow plan for min/max
Дата
Msg-id 87ad9d52dv.fsf@stark.dyndns.tv
обсуждение исходный текст
Ответ на Re: slow plan for min/max  ("scott.marlowe" <scott.marlowe@ihs.com>)
Ответы Re: slow plan for min/max  (Josh Berkus <josh@agliodbs.com>)
Re: slow plan for min/max  (Bruno Wolff III <bruno@wolff.to>)
Список pgsql-performance
The only connection to MVCC is that the "obvious" solution doesn't work,
namely storing a cache of the aggregate in the table information.

So what would it take to implement this for "all" aggregates? Where I think
"all" really just means min(), max(), first(), last().

I think it would mean having a way to declare when defining an aggregate that
only specific records are necessary. For first() and last() it would only have
to indicate in some way that only the first or last record of the grouping was
necessary in the pre-existing order.

For min() and max() it would have to indicate not only that only the first or
last record is necessary but also the sort order to impose.

Then if the optimizer determines that all the aggregates used either impose no
sort order or impose compatible sort orders, then it should insert an extra
sort step before the grouping, and flag the executor to indicate it should do
DISTINCT ON type behaviour to skip unneeded records.

Now the problem I see is if there's no index on the sort order imposed, and
the previous step wasn't a merge join or something else that would return the
records in order then it's not necessarily any faster to sort the records and
return only some. It might be for small numbers of records, but it might be
faster to just read them all in and check each one for min/max the linear way.

--
greg

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

Предыдущее
От: Vivek Khera
Дата:
Сообщение: Re: increase performancr with "noatime"?
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: slow plan for min/max