Re: Minimally avoiding Transaction Wraparound in VLDBs - Mailing list pgsql-hackers

From Gavin Sherry
Subject Re: Minimally avoiding Transaction Wraparound in VLDBs
Date
Msg-id Pine.LNX.4.58.0509221550570.24326@linuxworld.com.au
Whole thread Raw
In response to Re: Minimally avoiding Transaction Wraparound in VLDBs  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Minimally avoiding Transaction Wraparound in VLDBs
List pgsql-hackers
On Wed, 31 Aug 2005, Tom Lane wrote:

> BTW ... the original Berkeley papers on Postgres make frequent reference
> to a "vacuum daemon", which seems to be essentially what we're trying to
> build with autovacuum.  Does anyone know if the Berkeley implementation
> ever actually had auto vacuuming, or was that all handwaving?  If it did
> exist, why was it removed?

Well, I was just poking around the executor and noticed this in
ExecDelete():
   /*    * Note: Normally one would think that we have to delete index tuples    * associated with the heap tuple now..
  *    * ... but in POSTGRES, we have no need to do this because the vacuum    * daemon automatically opens an index
scanand deletes index tuples    * when it finds deleted heap tuples. -cim 9/27/89    */
 

So, it seems they must have actually written the vacuum daemon.

Gavin


pgsql-hackers by date:

Previous
From: Hannu Krosing
Date:
Subject: Re: feature proposal ...
Next
From: David Fetter
Date:
Subject: Re: Minimally avoiding Transaction Wraparound in VLDBs