Re: Index scan plan estimates way off.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Jonathan Hseu <vomjom(at)vomjom(dot)net>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Index scan plan estimates way off.
Date: 2009-03-05 18:30:51
Message-ID: 8053.1236277851@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Jonathan Hseu <vomjom(at)vomjom(dot)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

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Kevin Grittner 2009-03-05 18:57:20 Re: Postgres 8.3, four times slower queries?
Previous Message Robert Haas 2009-03-05 16:56:08 Re: Postgres 8.3, four times slower queries?