Re: Non-blocking vacuum full

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: Non-blocking vacuum full
Дата
Msg-id 46FD5695.6000302@enterprisedb.com
обсуждение исходный текст
Ответ на Non-blocking vacuum full  (Peter Schuller <peter.schuller@infidyne.com>)
Ответы Re: Non-blocking vacuum full  (Ron Mayer <rm_pg@cheapcomplexdevices.com>)
Список pgsql-performance
Peter Schuller wrote:
> I have only looked very very briefly at the PG code so I don't know
> how far fetched it is, but my thought was that it should be possible
> to have a slow background process (similar to normal non-full vacuums
> nows) that would, instead of registering dead tuples in the FSM, move
> live tuples around.

What you've described is actually very close to VACUUM FULL. VACUUM FULL
needs to take an exclusive lock to lock out concurrent scanners that
might miss or see a tuple twice, when a live tuple is moved. That's the
fundamental problem you need to solve.

I think it's doable, if you take a copy of the tuple, and set the ctid
pointer on the old one like an UPDATE, and wait until the old tuple is
no longer visible to anyone before removing it. It does require some
changes to tuple visibility code. For example, a transaction running in
serializable mode shouldn't throw a serialization error when it tries to
update an old, moved row version, but follow the ctid pointer instead.

--
  Heikki Linnakangas
  EnterpriseDB   http://www.enterprisedb.com

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

Предыдущее
От: Peter Schuller
Дата:
Сообщение: Non-blocking vacuum full
Следующее
От: Tom Lane
Дата:
Сообщение: Re: OOM Errors as a result of table inheritance and a bad plan(?)