Performance issue: index not used on GROUP BY...

From: gmb <gmbouwer(at)gmail(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Performance issue: index not used on GROUP BY...
Date: 2014-08-28 08:50:40
Message-ID: 1409215840535-5816702.post@n5.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hi all

I have the following table with 10+ million records:

create table ddetail (
ddet_id serial,
co_id integer,
client_id integer,
doc_no varchar,
line_id integer,
batch_no integer,
amount NUMERIC ,
...,
constraint PRIMAR KEY ( co_id , client_id , doc_no , line_id, ddet_id )
) ;

When doing the following query on this table, performance is really slow:

SELECT co_id , client_id , doc_no , line_id , sum( amount )
FROM ddetail
GROUP BY co_id , client_id , doc_no , line_id

It seems as if the planner is not using the PRIMARY KEY as index which was
my assumption.

Can somebody please confirm whether aggregate functions such as GROUP BY
should use indexes ?

Thanks in advance

gmb

--
View this message in context: http://postgresql.1045698.n5.nabble.com/Performance-issue-index-not-used-on-GROUP-BY-tp5816702.html
Sent from the PostgreSQL - performance mailing list archive at Nabble.com.

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Victor Yegorov 2014-08-28 08:57:09 Re: Performance issue: index not used on GROUP BY...
Previous Message Kevin Grittner 2014-08-27 12:59:29 Re: autocommit (true/false) for more than 1 million records