Re: Indexes not always used after inserts/updates/vacuum analyze - Mailing list pgsql-bugs

From Tom Lane
Subject Re: Indexes not always used after inserts/updates/vacuum analyze
Date
Msg-id 28067.1014993460@sss.pgh.pa.us
Whole thread Raw
In response to Re: Indexes not always used after inserts/updates/vacuum  (Reinhard Max <max@suse.de>)
Responses Re: Indexes not always used after inserts/updates/vacuum  (Reinhard Max <max@suse.de>)
List pgsql-bugs
Reinhard Max <max@suse.de> writes:
>> The actual rows read from this indexscan seem to be many fewer than
>> the number of rows in the table.  What are the ranges of the id
>> values in tables foo and bar?  I'm wondering if the merge could have
>> stopped far short of the end of the foo table; if so, *that* is the
>> effect that we are failing to model accurately.

> Good guess :)

> I'll tell my colleague (it's his test database, after all) that he
> should take more realistic test data before complaining about bad
> performance...

Actually, is it unrealistic test data?  After thinking about it awhile,
I concluded that this is an effect the planner could and should model.
We have statistics that will tell us the maximum values of both
variables (at least in common cases), so it's not hard to estimate which
input stream will be exhausted first and how much of the other one will
actually be read.  This could make a big difference in the cost of an
indexscan-based merge.

I have committed changes for 7.3 that do this.  It's probably too big a
change to risk back-patching for 7.2.1, but if you care to experiment
with CVS tip then you could try it out.

            regards, tom lane

pgsql-bugs by date:

Previous
From: UltraMax
Date:
Subject: Re: cannot install postgresql 7.2
Next
From: Tom Lane
Date:
Subject: Re: Bug #605: timestamp(timestamp('a timestamp)) no longer works