hash aggregation

Поиск
Список
Период
Сортировка
От Korisk
Тема hash aggregation
Дата
Msg-id 118871349885342@web16f.yandex.ru
обсуждение исходный текст
Ответы Re: hash aggregation  (Sergey Konoplev <gray.ru@gmail.com>)
Список pgsql-performance
Hello! Is it possible to speed up the plan?

hashes=# \d hashcheck
                              Table "public.hashcheck"
 Column |       Type        |                       Modifiers
--------+-------------------+--------------------------------------------------------
 id     | integer           | not null default nextval('hashcheck_id_seq'::regclass)
 name   | character varying |
 value  | character varying |
Indexes:
    "btr" btree (name)

hashes=# select version();
                                                   version
--------------------------------------------------------------------------------------------------------------
 PostgreSQL 9.2.1 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.7.2 20120921 (Red Hat 4.7.2-2), 64-bit
(1 row)

hashes=# explain analyse verbose select name, count(name) as cnt from hashcheck group by name order by name desc;
                                                                 QUERY PLAN
                  


---------------------------------------------------------------------------------------------------------------------------------------------
 Sort  (cost=573977.88..573978.38 rows=200 width=32) (actual time=10351.280..10351.551 rows=4000 loops=1)
   Output: name, (count(name))
   Sort Key: hashcheck.name
   Sort Method: quicksort  Memory: 315kB
   ->  HashAggregate  (cost=573968.24..573970.24 rows=200 width=32) (actual time=10340.507..10341.288 rows=4000
loops=1)
         Output: name, count(name)
         ->  Seq Scan on public.hashcheck  (cost=0.00..447669.16 rows=25259816 width=32) (actual time=0.019..2798.058
rows=25259817loops=1) 
               Output: id, name, value
 Total runtime: 10351.989 ms
(9 rows)

hashes=#

Thank you.


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: shared_buffers/effective_cache_size on 96GB server
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: shared_buffers/effective_cache_size on 96GB server