From: | Richard Huxton <dev(at)archonet(dot)com> |
---|---|
To: | BBI Edwin Punzalan <edwin(at)bluebamboo(dot)ph> |
Cc: | pgsql-performance(at)postgresql(dot)org |
Subject: | Re: FW: FW: Index usage |
Date: | 2004-11-24 10:16:53 |
Message-ID: | 41A45F95.70206@archonet.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
BBI Edwin Punzalan wrote:
> Thanks, Tim.
>
> I tried adding an upper limit and its still the same as follows:
>
> ==============
> db=# explain analyze select date from chatlogs where date>='11/24/04';
> NOTICE: QUERY PLAN:
>
> Index Scan using chatlogs_date_idx on chatlogs (cost=0.00..145.72 rows=37
> width=4) (actual time=0.18..239.69 rows=10737 loops=1)
> Total runtime: 246.22 msec
>
> EXPLAIN
> db=# explain analyze select date from chatlogs where date>='11/23/04' and
> date<'11/24/04';
> NOTICE: QUERY PLAN:
>
> Seq Scan on chatlogs (cost=0.00..24763.19 rows=9200 width=4) (actual
> time=0.44..4447.01 rows=13029 loops=1)
> Total runtime: 4455.56 msec
We have two issues here
1. In the first example it only picks an index because it thinks it is
going to get 37 rows, it actually gets 10737
2. It's taking 4455ms to run a seq-scan but only 246ms to run an
index-scan over 10737 rows (and then fetch the rows too).
Questions:
1. How many rows do you have in chatlogs?
2. Is this the only problem you are experiencing, or just one from many?
3. Have you tuned any configuration settings? e.g. as suggested in:
http://www.varlena.com/varlena/GeneralBits/Tidbits/perf.html
--
Richard Huxton
Archonet Ltd
From | Date | Subject | |
---|---|---|---|
Next Message | BBI Edwin Punzalan | 2004-11-24 10:39:52 | Re: FW: FW: Index usage |
Previous Message | BBI Edwin Punzalan | 2004-11-24 09:43:52 | Re: FW: Index usage |