Query performance

From: Stephen Davies <sdc(at)sdc(dot)com(dot)au>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: Query performance
Date: 2007-08-18 06:40:28
Message-ID: 200708181610.28918.sdc@sdc.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

I have a table with some seven million rows.

The query:

select count(rdate),rdate from reading where sensor_id in
(1137,1138,1139) group by rdate order by rdate desc limit 1;

takes a few seconds but:

select count(rdate),rdate from reading where sensor_id in
(1137,1138,1139,1140) group by rdate order by rdate desc limit 1;

(anything with four or more values in the "in" list) takes several
minutes.

Is there any way to make the "larger" queries more efficient?

Both rdate and sensor_id are indexed and the database is vacuumed every
night.

Explain outputs are:

benparts=# explain select count(rdate),rdate from reading where
sensor_id in (1137,1138,1139,1140) group by rdate order by rdate desc
limit 1;
QUERY PLAN
---------------------------------------------------------------------------------------------------
Limit (cost=0.00..39890.96 rows=1 width=8)
-> GroupAggregate (cost=0.00..7938300.21 rows=199 width=8)
-> Index Scan Backward using date on reading
(cost=0.00..7937884.59 rows=82625 width=8)
Filter: (sensor_id = ANY
('{1137,1138,1139,1140}'::integer[]))
(4 rows)

benparts=# explain select count(rdate),rdate from reading where
sensor_id in (1137,1138,1139) group by rdate order by rdate desc limit
1;
QUERY PLAN
-----------------------------------------------------------------------------------------------------
Limit (cost=48364.32..48364.32 rows=1 width=8)
-> Sort (cost=48364.32..48364.49 rows=69 width=8)
Sort Key: rdate
-> HashAggregate (cost=48361.35..48362.21 rows=69 width=8)
-> Bitmap Heap Scan on reading (cost=535.53..48218.10
rows=28650 width=8)
Recheck Cond: (sensor_id = ANY
('{1137,1138,1139}'::integer[]))
-> Bitmap Index Scan on reading_sensor
(cost=0.00..528.37 rows=28650 width=0)
Index Cond: (sensor_id = ANY
('{1137,1138,1139}'::integer[]))
(8 rows)

TIA,
Stephen Davies
--
========================================================================
This email is for the person(s) identified above, and is confidential to
the sender and the person(s). No one else is authorised to use or
disseminate this email or its contents.

Stephen Davies Consulting Voice: 08-8177 1595
Adelaide, South Australia. Fax: 08-8177 0133
Computing & Network solutions. Mobile:0403 0405 83

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Jeroen T. Vermeulen 2007-08-21 11:39:27 Re: Query performance
Previous Message Michael Fuhr 2007-08-15 03:52:15 Re: libpq + utf-8