Re: pg_reorg

Поиск
Список
Период
Сортировка
От Jens Wilke
Тема Re: pg_reorg
Дата
Msg-id 20110419134859.GA52875@wilke.org
обсуждение исходный текст
Ответ на Re: pg_reorg  (Vibhor Kumar <vibhor.kumar@enterprisedb.com>)
Ответы Re: pg_reorg  (Merlin Moncure <mmoncure@gmail.com>)
Re: pg_reorg  (Scott Mead <scottm@openscg.com>)
Список pgsql-general
On Tue, Apr 19, 2011 at 04:02:01AM +0530, Vibhor Kumar wrote:

> > IIRC "vacuum full" mode rewrites the indexes as well.
>
> Till 8.4 no. From 9.0 onwards yes. However VACUUM FULL still locks the table.

Don't be confused with the "vacuum full" term.
This has nothing to do with the postgresql "vacuum full" command.
Both pg_reorg's "vacuum full" and "cluster" mode do the pretty same thing. They rewrite the table and all their
indexes.They use triggers to update the new table during the reorganisation. 
The only difference is that "cluster" does an additional order by.
Both of them lock the original table at the end of the reorganisation just for the switch.
If the lock is not granted within -T seconds, the backends holding locks are canceled.

If you run out of diskspace, it's possible to reorg table by table.
And yes, pg_reorg does only work with tables with a primary key.
This will change in future releases, IIRC

regards, Jens

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

Предыдущее
От: Taras Kopets
Дата:
Сообщение: Re: create table sintax
Следующее
От: Merlin Moncure
Дата:
Сообщение: Re: pg_reorg