Re: BUG #3979: SELECT DISTINCT slow even on indexed column

Поиск
Список
Период
Сортировка
От Jeff Davis
Тема Re: BUG #3979: SELECT DISTINCT slow even on indexed column
Дата
Msg-id 1203640662.7878.33.camel@dogma.ljc.laika.com
обсуждение исходный текст
Ответ на BUG #3979: SELECT DISTINCT slow even on indexed column  ("David Lee" <david_lee@bigfix.com>)
Список pgsql-bugs
On Thu, 2008-02-21 at 23:34 +0000, David Lee wrote:
> Finally, I ran:
>  SELECT a, b FROM x GROUP BY a, b;
>
> But it was still the same.
>
> Next I created an index on ("a") and ran the query:
>  SELECT DISTINCT a FROM x
>
> but the same thing happened (first didn't use the index; after turning
> seq-scan off, was still slow; tried using GROUP BY, still slow).
>
> The columns "a" and "b" are NOT NULL and has 100 distinct values each. The
> indexes are all btree indexes.

If there are only 100 distinct values each, then that's only (at most)
10k distinct (a,b) pairs.

To me it sounds like it would be most efficient to use a HashAggregate,
which can only be used by the "GROUP BY" variant of the query you ran
(DISTINCT can't use that plan).

First, try to force a HashAggregate and see what the results are. If
that is faster, the planner is not choosing the right plan. Try ANALYZE
to update the statistics, and if that doesn't work, post EXPLAIN
results.

Also, this post is somewhat off-topic for -bugs, try posting to -general
or -performance with this type of question.

Regards,
    Jeff Davis

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

Предыдущее
От: "David Lee"
Дата:
Сообщение: BUG #3979: SELECT DISTINCT slow even on indexed column
Следующее
От: Euler Taveira de Oliveira
Дата:
Сообщение: Re: BUG #3975: tsearch2 index should not bomb out of 1Mb limit