Re: Almost infinite query -> Different Query Plan when changing where clause value

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Almost infinite query -> Different Query Plan when changing where clause value
Дата
Msg-id dcc563d11002150924r2b6afb9dg685b7af94fa06798@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Almost infinite query -> Different Query Plan when changing where clause value  (lionel duboeuf <lionel.duboeuf@boozter.com>)
Список 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 по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: 512,600ms query becomes 7500ms... but why? Postgres 8.3 query planner quirk?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: 8.1 -> 8.4 regression