Re: index file bloating still in 7.4 ?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: index file bloating still in 7.4 ?
Дата
Msg-id 15968.1066686172@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: index file bloating still in 7.4 ?  (Seum-Lim Gan <slgan@lucent.com>)
Ответы Re: index file bloating still in 7.4 ?  (Andrew Sullivan <andrew@libertyrms.info>)
Список pgsql-performance
Seum-Lim Gan <slgan@lucent.com> writes:
> [ successive outputs from VACUUM ANALYZE ]

FWIW, I don't think your problem is really index bloat at all, it's
more like too-many-dead-rows bloat.  Note that the number of "dead row
versions" is climbing steadily from run to run:

> DETAIL:  101802 dead row versions cannot be removed yet.

> DETAIL:  110900 dead row versions cannot be removed yet.

> DETAIL:  753064 dead row versions cannot be removed yet.

> DETAIL:  765328 dead row versions cannot be removed yet.

It's hardly the index's fault that it's growing, when it has to keep
track of an ever-increasing number of rows.

The real question is what you're doing that requires the system to keep
hold of these dead rows instead of recycling them.  I suspect you have
a client process somewhere that is holding an open transaction for a
long time ... probably not doing anything, just sitting there with an
unclosed BEGIN ...

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: index file bloating still in 7.4 ?
Следующее
От: Josh Berkus
Дата:
Сообщение: SRFs ... no performance penalty?