index usage makes problem - Mailing list pgsql-performance

From sathiya psql
Subject index usage makes problem
Date
Msg-id f966c2ee0803060016j59b52fceq29225bc54a762537@mail.gmail.com
Whole thread Raw
List pgsql-performance
I had 50 lakh records in my table...

while counting that am using that row in where condition... which makes problem, cpu is waiting for device...

Debian OS, postresql 7.4, 50 lakh records.

Query is

EXPLAIN ANALYZE select count(call_id) from call_log where call_id > 1;

while seeing the top, cpu is waiting for i/o, and without this call_id condition if i do
       EXPLAIN ANALYZE select count(oid) from call_log where oid > 1;
it executed in 21 seconds....

pgsql-performance by date:

Previous
From: Theo Kramer
Date:
Subject: Re: oid...any optimizations
Next
From: Dave Cramer
Date:
Subject: Re: count * performance issue