Re: VACUUM FULL versus TOAST - Mailing list pgsql-hackers

From Greg Stark
Subject Re: VACUUM FULL versus TOAST
Date
Msg-id CAM-w4HMJrmTcUuQve6sbdbM2NbE5BUwa0-v__xk+h7YNWbhqPA@mail.gmail.com
Whole thread Raw
In response to Re: VACUUM FULL versus TOAST  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: VACUUM FULL versus TOAST
List pgsql-hackers
On Sun, Aug 14, 2011 at 5:15 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> There would be some merit in your suggestion if we knew that all/most
> toasted columns would actually get fetched out of the catcache entry
> at some point.  Then we'd only be moving the cost around, and might even
> save something on repeated accesses.  But I don't think we know that.
> In the specific example at hand (pg_statistic entries) it's entirely
> plausible that the planner would only need the histogram, or only need
> the MCV list, depending on the sorts of queries it was coping with.

Fwiw detoasting statistics entries sounds like a fine idea to me. I've
often seen queries that are unexpectedly slow to plan and chalked it
up to statistics entries getting toasted. If it's ok to read either
the histogram or MVC list from disk every time we plan a query then
why are we bothering with an in-memory cache of the statistics at all?

The only thing that gives me pause is that it's possible these entries
are *really* large. If you have a decent number of tables that are all
a few megabytes of histograms then things could go poorly. But I don't
think having to read in these entries from pg_toast every time you
plan a query is going to go much better for you either.



--
greg


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: VACUUM FULL versus TOAST
Next
From: Greg Smith
Date:
Subject: Re: our buffer replacement strategy is kind of lame