Re: count(*) performance - Mailing list pgsql-performance

From Matthew T. O'Connor
Subject Re: count(*) performance
Date
Msg-id 44286A76.5010008@zeut.net
Whole thread Raw
In response to Re: count(*) performance  ("Mikael Carneholm" <Mikael.Carneholm@WirelessCar.com>)
Responses Re: count(*) performance  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-performance
Mikael Carneholm wrote:
> This is where a "last_vacuumed" (and "last_analyzed") column in
> pg_statistic(?) would come in handy. Each time vacuum or analyze has
> finished, update the row for the specific table that was
> vacuumed/analyzed with a timestamp in the last_vacuumed/last_analyzed
> column. No more guessing "maybe I haven't vacuumed/analyzed in a while",
> and each time a user complains about bad performance, one could request
> the user to do a "select s.last_vacuumed, s.last_analyzed from
> pg_statistic s, pg_attribute a, pg_class c where ..."
>
> It SOUNDS easy to implement, but that has fooled me before... :-)


It is fairly easy to implement, however it has been discussed before and
decided that it wasn't necessary.  What the system cares about is how
long it's been since the last vacuum in terms of XIDs not time.  Storing
a timestamp would make it more human readable, but I'm not sure the
powers that be want to add two new columns to some system table to
accommodate this.

Matt

pgsql-performance by date:

Previous
From: "Mikael Carneholm"
Date:
Subject: Re: count(*) performance
Next
From: Tom Lane
Date:
Subject: Re: count(*) performance