Re: Shouldn't the planner have a higher cost for reverse index scans? - Mailing list pgsql-performance

From Matthew Wakeling
Subject Re: Shouldn't the planner have a higher cost for reverse index scans?
Date
Msg-id alpine.DEB.2.00.0904141036100.4053@aragorn.flymine.org
Whole thread Raw
In response to Re: Shouldn't the planner have a higher cost for reverse index scans?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-performance
On Fri, 10 Apr 2009, Tom Lane wrote:
> Josh Berkus <josh@agliodbs.com> writes:
>> Not as far as I can tell.   It looks to me like the planner is assuming
>> that a forwards index scan and a reverse index scan will have the same
>> cost.
>
> Right, because they do.  If you think otherwise, demonstrate it.

They do when the correlation of indexed value versus position in the table
is low, resulting in random access. However, when the correlation is near
1, then the index scan approximates to sequential access to disc. In that
case, scan direction would be important.

Of course, there's the separate issue that correlation isn't actually that
good a measure of the cost of an index scan, but I'm not sure what is
better, and feasible.

Matthew


--
 Our riverbanks and seashores have a beauty all can share, provided
 there's at least one boot, three treadless tyres, a half-eaten pork
 pie, some oil drums, an old felt hat, a lorry-load of tar blocks,
 and a broken bedstead there.                   -- Flanders and Swann

pgsql-performance by date:

Previous
From: Matthew Wakeling
Date:
Subject: Re: Nested query performance issue
Next
From: Glenn Maynard
Date:
Subject: Re: Nested query performance issue