Re: speeding up COUNT and DISTINCT queries

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Re: speeding up COUNT and DISTINCT queries
Дата
Msg-id 1047509538.57729.4.camel@jester
обсуждение исходный текст
Ответ на speeding up COUNT and DISTINCT queries  (Max Baker <max@warped.org>)
Список pgsql-performance
On Wed, 2003-03-12 at 17:38, Max Baker wrote:
> I'm looking for a general method to
> speed up DISTINCT and COUNT queries.
>
>
> mydatabase=> EXPLAIN ANALYZE  select distinct(mac) from node;
> NOTICE:  QUERY PLAN:
>
> Unique  (cost=110425.67..110514.57 rows=3556 width=6) (actual
> time=45289.78..45598.62 rows=25334 loops=1)
>   ->  Sort  (cost=110425.67..110425.67 rows=35561 width=6) (actual
>   time=45289.77..45411.53 rows=34597 loops=1)
>           ->  Seq Scan on node  (cost=0.00..107737.61 rows=35561
>           width=6) (actual time=6.73..44383.57 rows=34597 loops=1)
>
>           Total runtime: 45673.19 msec
>                          ouch.
>
> I run VACCUUM ANALYZE once a day.

Thats not going to do anything for that query, as there only is one
possible plan at the moment :)

I don't think you can do much about that query, other than buy a faster
harddisk or more ram.  Nearly all the time seems to be used pulling the
data off the disk (in the Seq Scan).

--
Rod Taylor <rbt@rbt.ca>

PGP Key: http://www.rbt.ca/rbtpub.asc

Вложения

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

Предыдущее
От: Max Baker
Дата:
Сообщение: speeding up COUNT and DISTINCT queries
Следующее
От: "Chad Thompson"
Дата:
Сообщение: Re: speeding up COUNT and DISTINCT queries