RE: Plans for solving the VACUUM problem

Поиск
Список
Период
Сортировка
От Mike Mascari
Тема RE: Plans for solving the VACUUM problem
Дата
Msg-id 01C0DF13.571C2990.mascarm@mascari.com
обсуждение исходный текст
Ответ на Plans for solving the VACUUM problem  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Plans for solving the VACUUM problem  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Very neat. You mention that the truncation of both heap and index 
relations is not necessarily mandatory. Under what conditions would 
either of them be truncated?

Mike Mascari
mascarm@mascari.com

-----Original Message-----
From:    Tom Lane [SMTP:tgl@sss.pgh.pa.us]

....

3. Lazy VACUUM processes a table in five stages:  A. Scan relation looking for dead tuples; accumulate a list of 
their     TIDs, as well as info about existing free space.  (This pass is     completely read-only and so incurs no WAL
traffic.) B. Remove index entries for the dead tuples.  (See below for 
 
details.)  C. Physically delete dead tuples and compact free space on their 
pages.  D. Truncate any completely-empty pages at relation's end. (Optional,     see below.)  E. Create/update FSM
entryfor the table.
 

...

Further out (possibly not for 7.2), we should also look at making the
index AMs responsible for shrinking indexes during deletion, or 
perhaps
via a separate "vacuum index" API.  This can be done without 
exclusive
locks on the index --- the original Lehman & Yao concurrent-btrees 
paper
didn't describe how, but more recent papers show how to do it.  As 
with
the main tables, I think it's sufficient to recycle freed space 
within
the index, and not necessarily try to give it back to the OS.

...        regards, tom lane



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

Предыдущее
От: Alex Pilosov
Дата:
Сообщение: operators and indices?
Следующее
От: mlw
Дата:
Сообщение: Re: Plans for solving the VACUUM problem