Re: Autovacuum in the backend

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Autovacuum in the backend
Дата
Msg-id 200506151249.j5FCnMq14570@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: Autovacuum in the backend  (Hannu Krosing <hannu@skype.net>)
Ответы Re: Autovacuum in the backend  ("Matthew T. O'Connor" <matthew@zeut.net>)
Список pgsql-hackers
Hannu Krosing wrote:
> On K, 2005-06-15 at 13:41 +0800, Qingqing Zhou wrote:
> > "Neil Conway" <neilc@samurai.com> writes
> > >
> > > Wasn't the plan to rewrite pg_autovacuum to use the FSM rather than the
> > > stats collector?
> > >
> > 
> > I don't understand. Currently the basic logic of pg_autovacuum is to use the
> > pg_stat_all_tables numbers like n_tup_upd, n_tup_del to determine if a
> > relation need to be vacuumed. How to use FSM to get these information?
> 
> One can't probably use FSM as it is, as FSM is filled in by vacuum and
> this creates a circular dependency.
> 
> But it would be very nice to have something _similar_ to FSM, say DSM
> (dead space map), which is filled in when a tuple is marked as "dead for
> all running backends", which could be used to implement a vacuum which
> vacuums only those pages, which do actually contain removable tuples.

Yes, those are step five.  The TODO list has:* Auto-vacuum        o Move into the backend code        o Scan the buffer
cacheto find free space or use background writer        o Use free-space map information to guide refilling        o Do
VACUUMFULL if table is nearly empty?
 

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
359-1001+  If your life is a hard drive,     |  13 Roberts Road +  Christ can be your backup.        |  Newtown Square,
Pennsylvania19073
 


В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Qingqing Zhou"
Дата:
Сообщение: Re: Autovacuum in the backend
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: LGPL