Re: Index scan plan estimates way off. - Mailing list pgsql-performance

From Tom Lane
Subject Re: Index scan plan estimates way off.
Date
Msg-id 8053.1236277851@sss.pgh.pa.us
Whole thread Raw
In response to Index scan plan estimates way off.  (Jonathan Hseu <vomjom@vomjom.net>)
Responses Re: Index scan plan estimates way off.  (Jonathan Hseu <vomjom@vomjom.net>)
Re: Index scan plan estimates way off.  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-performance
Jonathan Hseu <vomjom@vomjom.net> writes:
>  Sort  (cost=11684028.44..11761274.94 rows=30898601 width=40)
>    Sort Key: "time"
>    ->  Bitmap Heap Scan on ticks  (cost=715657.57..6995196.08 rows=30898601
> width=40)
>          Recheck Cond: (contract_id = 1)
>          ->  Bitmap Index Scan on contract_id_time_idx
> (cost=0.00..707932.92 rows=30898601 width=0)
>                Index Cond: (contract_id = 1)
> (6 rows)

> This plan doesn't complete in a reasonable amount of time.  I end up having
> to kill the query after it's been running for over an hour.

The bitmap scan should be at least as efficient as the plain indexscan,
so I suppose the problem is that the sort is slow.  What's the datatype
of "time"?  Can this machine actually support 256MB+ work_mem, or is that
likely to be driving it into swapping?

You might learn more from enabling trace_sort and watching the
postmaster log entries it generates.  On the whole I think the planner
isn't making a stupid choice here: sorting a large number of rows
usually *is* preferable to making an indexscan over them, unless the
table is remarkably close to being in physical order for the index.
So it would be worth trying to figure out what the problem with the
sort is.

            regards, tom lane

pgsql-performance by date:

Previous
From: Aaron Guyon
Date:
Subject: Re: Postgres 8.3, four times slower queries?
Next
From: "Kevin Grittner"
Date:
Subject: Re: Postgres 8.3, four times slower queries?