Re: Resumable vacuum proposal and design overview

From: "Zeugswetter Andreas ADI SD" <ZeugswetterA(at)spardat(dot)at>
To: "Simon Riggs" <simon(at)2ndquadrant(dot)com>, "Galy Lee" <lee(dot)galy(at)oss(dot)ntt(dot)co(dot)jp>
Cc: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>, "Jim C(dot) Nasby" <jim(at)nasby(dot)net>, <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Resumable vacuum proposal and design overview
Date: 2007-02-28 10:19:44
Message-ID: E1539E0ED7043848906A8FF995BDA57901CAFD2D@m0143.s-mxs.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


> > The things I wanted to say is that:
> > If we can stop at any point, we can make maintenance memory large
> > sufficient to contain all of the dead tuples, then we only need to
> > clean index for once. No matter how many times vacuum
> stops, indexes
> > are cleaned for once.
>
> I agree that the cycle-at-a-time approach could perform more
> poorly with repeated stop-start. The reason for the
> suggestion was robustness, not performance. If you provide

It performs more poorly, but it also gives immediate gain, since part of
the table is readily vacuumed. If you do it all in one pass with stop
resume, the first visible effect may be several days after you start
vacuuming. And, basically you need to pretend the vacuum transaction is
still running after the first stop. Else dead tuple reuse ala HOT is not
possible (or the ctid list needs to be reevaluated during resume, which
per se is not efficient).

> the wrong dead-tuple-list to VACUUM, you will destroy the
> integrity of a table, which can result in silent data loss.
> You haven't explained how saving the dead-tuple-list could be
> done in a safe mannner and it seems risky to me.

Agreed. It seems not efficiently possible.

Andreas

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Zeugswetter Andreas ADI SD 2007-02-28 10:34:14 Re: Resumable vacuum proposal and design overview
Previous Message Galy Lee 2007-02-28 10:02:45 Re: Resumable vacuum proposal and design overview