Re: [SQL] 7.3 analyze & vacuum analyze problem - Mailing list pgsql-performance

From Tom Lane
Subject Re: [SQL] 7.3 analyze & vacuum analyze problem
Date
Msg-id 25282.1051747838@sss.pgh.pa.us
Whole thread Raw
In response to Re: [SQL] 7.3 analyze & vacuum analyze problem  ("Ron Mayer" <ron@intervideo.com>)
Responses Re: [SQL] 7.3 analyze & vacuum analyze problem  (Achilleus Mantzios <achill@matrix.gatewaynet.com>)
List 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 by date:

Previous
From: "Ron Mayer"
Date:
Subject: Re: [SQL] 7.3 analyze & vacuum analyze problem
Next
From: "Christopher Kings-Lynne"
Date:
Subject: Re: [SQL] 7.3 analyze & vacuum analyze problem