Re: vacuum, performance, and MVCC

Поиск
Список
Период
Сортировка
От Martijn van Oosterhout
Тема Re: vacuum, performance, and MVCC
Дата
Msg-id 20060624205223.GA32408@svana.org
обсуждение исходный текст
Ответ на Re: vacuum, performance, and MVCC  (Hannu Krosing <hannu@skype.net>)
Ответы Re: Buffer for inner and outer table  (Daniel Xavier de Sousa <danielucg@yahoo.com.br>)
Список pgsql-hackers
On Sat, Jun 24, 2006 at 10:04:43PM +0300, Hannu Krosing wrote:
> Maybe we could start from reusing the index tuples which point to
> invisible tuples ? The index is not MVCC anyway, so maybe it is easier
> to do in-place replacement there ?
>
> This probably has the same obstacles which have prevented us from
> removing those in the first place (removing instead of marking as
> invisible). Does it cause some locking issues ? Or does it go against
> some other constraints of our index lookups ?

The problem with updating an index is that you have to do it in a way
that concurrent scans (forwards and backwards) don't get confused
because the tuple they stopped on vanished.

AIUI, the current approach is two step. The first time round you mark
it deleted but don't actually delete it. Thus, any scan currently
stopped on that tuple won't have a problem. Sometime later you remove
the actual tuple, once you know there's no scan stopped on it (because
no scan will deliberatly stop on a deleted tuple).

I forget the actual locking steps that ensure this though.

> If we could delete/reuse old index tuples, it would solve a sizable
> chunk of index-growth problem, especially for cases where referenced key
> value does not change.

I think we recently changed the code to always scan an index a page at
a time so maybe scans no longer stop in the middle of a page anymore...
Or perhaps that was VACUUM only.

Have a noce day,
--
Martijn van Oosterhout   <kleptog@svana.org>   http://svana.org/kleptog/
> From each according to his ability. To each according to his ability to litigate.

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

Предыдущее
От: Hannu Krosing
Дата:
Сообщение: Re: vacuum, performance, and MVCC
Следующее
От: Daniel Xavier de Sousa
Дата:
Сообщение: Re: Buffer for inner and outer table