Re: BUG #5294: Sorts on more than just the order-by clause

Поиск
Список
Период
Сортировка
От Allen Johnson
Тема Re: BUG #5294: Sorts on more than just the order-by clause
Дата
Msg-id 6786ed4f1001211327v1bd65dffpeb921658cdb4c22f@mail.gmail.com
обсуждение исходный текст
Ответ на Re: BUG #5294: Sorts on more than just the order-by clause  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: BUG #5294: Sorts on more than just the order-by clause  (Greg Stark <gsstark@mit.edu>)
Список pgsql-bugs
> In practice, I really doubt this would make a measurable performance
> difference, since most row comparisons would arrive at a result before
> they got to the lowest-order columns.
>
> I think your gripe may actually have to do with a misestimate of the
> relative costs of hash- and sort-based grouping, but analyze results
> on a toy example don't illuminate that sort of problem at all :-(

Yes, this toy example doesn't show how much time was spent on the
actual sorting (of the production data, obviously). What I can do is
assemble a test database with similar amount of data and repost the
`explain analyze` from that if there is any interest.

What I noticed in the production query was that ~1000ms was spent on
sorting alone. The hack query reduced that to ~400ms. I should also
note that there was plenty of work_mem and that the sort was not
hitting disk.

I should be able to get that going sometime early tomorrow. All I'm
going to do is generate a lot of contacts by randomly choosing from a
set of lastnames, firstnames, etc as well as randomly insert some
number of attachments for each.

I'm open to any suggestions on testing methodologies.

AJ

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #5294: Sorts on more than just the order-by clause
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: add primary key doesn't block?