Re: The vacuum-ignore-vacuum patch

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: The vacuum-ignore-vacuum patch
Дата
Msg-id 12906.1153766352@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: The vacuum-ignore-vacuum patch  (Alvaro Herrera <alvherre@commandprompt.com>)
Список pgsql-patches
Alvaro Herrera <alvherre@commandprompt.com> writes:
> Tom Lane wrote:
>> A possible objection to this is that it would foreclose running VACUUM
>> and ANALYZE as a single transaction, exactly because of the point that
>> we couldn't insert pg_statistic rows using a lazy vacuum's XID.

> Hmm, what about having a single scan for both, and then starting a
> normal transaction just for the sake of inserting the pg_statistics
> tuple?

We could, but I think memory consumption would be the issue.  VACUUM
wants a lotta memory for the dead-TIDs array, ANALYZE wants a lot for
its statistics gathering ... even more if it's trying to take a larger
sample than before.  (This is probably why we kept them separate in
the last rewrite.)

> I think the interactions of Xids and vacuum and other stuff are starting
> to get complex; IMHO it warrants having a README.vacuum, or something.

Go for it ...

            regards, tom lane

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

Предыдущее
От: Joe Conway
Дата:
Сообщение: [Fwd: dblink patch - Asynchronous queries and parallel execution]
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: Re: [HACKERS] Resurrecting per-page cleaner for btree