Re: Almost infinite query -> Different Query Plan when changing where clause value - Mailing list pgsql-performance

From Scott Marlowe
Subject Re: Almost infinite query -> Different Query Plan when changing where clause value
Date
Msg-id dcc563d11002150924r2b6afb9dg685b7af94fa06798@mail.gmail.com
Whole thread Raw
In response to Re: Almost infinite query -> Different Query Plan when changing where clause value  (lionel duboeuf <lionel.duboeuf@boozter.com>)
List pgsql-performance
On Mon, Feb 15, 2010 at 2:52 AM, lionel duboeuf
<lionel.duboeuf@boozter.com> wrote:
> See as attachment the "correct" query plan for an other 'user'.
> I confirm by executing manual "VACUUM ANALYZE" that the problem is solved.
> But what i don't understand is that i would expect autovacuum to do the job.

There are two operations here.  Vacuum, which reclaims lost space, and
analyze which analyzes your data and stores histograms to be used when
building queries, to determine how many rows are likely to be returned
by each part of the plan.

The autovac daemon runs both vacuums and analyzes, often independently
of each other, when needed, based on threshold settings.  By running
autovac your db would get analyzed when necessary and would then have
up to date statistics when queries were run after that.

pgsql-performance by date:

Previous
From: Robert Haas
Date:
Subject: Re: 512,600ms query becomes 7500ms... but why? Postgres 8.3 query planner quirk?
Next
From: Tom Lane
Date:
Subject: Re: 8.1 -> 8.4 regression