Re: [SQL] 7.3 analyze & vacuum analyze problem

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [SQL] 7.3 analyze & vacuum analyze problem
Дата
Msg-id 25282.1051747838@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [SQL] 7.3 analyze & vacuum analyze problem  ("Ron Mayer" <ron@intervideo.com>)
Ответы Re: [SQL] 7.3 analyze & vacuum analyze problem  (Achilleus Mantzios <achill@matrix.gatewaynet.com>)
Список pgsql-performance
"Ron Mayer" <ron@intervideo.com> writes:
> Short summary: Later in the thread Tom explained my problem as free
> space not being evenly distributed across the table so ANALYZE's
> sampling gave skewed results.  In my case, "pgstatuple" was a
> good tool for diagnosing the problem, "vacuum full" fixed my table
> and a much larger fsm_* would have probably prevented it.

Not sure if that is Achilleus' problem or not.  IIRC, there should be
no difference at all in what VACUUM ANALYZE and ANALYZE put into
pg_statistic (modulo random sampling variations of course).  The only
difference is that VACUUM ANALYZE puts an exact tuple count into
pg_class.reltuples (since the VACUUM part groveled over every tuple,
this info is available) whereas ANALYZE does not scan the entire table
and so has to put an estimate into pg_class.reltuples.

It would be interesting to see the pg_class and pg_stats rows for this
table after VACUUM ANALYZE and after ANALYZE --- but I suspect the main
difference will be the reltuples values.

            regards, tom lane


В списке pgsql-performance по дате отправления:

Предыдущее
От: "Ron Mayer"
Дата:
Сообщение: Re: [SQL] 7.3 analyze & vacuum analyze problem
Следующее
От: "Christopher Kings-Lynne"
Дата:
Сообщение: Re: [SQL] 7.3 analyze & vacuum analyze problem