Re: AutoVacuum and growing transaction XID's

Поиск
Список
Период
Сортировка
От David Rowley
Тема Re: AutoVacuum and growing transaction XID's
Дата
Msg-id CAApHDvpmj5HkRDVS0f-fzv0qTnnQwV5iOtwa=KEgMJZQ+vNDyQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: AutoVacuum and growing transaction XID's  (github kran <githubkran@gmail.com>)
Ответы Re: AutoVacuum and growing transaction XID's
Re: AutoVacuum and growing transaction XID's
Список pgsql-general
On Fri, 8 May 2020 at 13:51, github kran <githubkran@gmail.com> wrote:
>       I can't either DROP or ALTER any other tables ( REMOVE Inheritance for any of old tables where the WRITES are
notgetting written to). Any of the ALTER TABLE OR DROP TABLE  DDL's arer not getting exeucted even I WAITED FOR SEVERAL
MINUTES, so I have terminated those queries as I didn't have luck. 

The auto-vacuum freeze holds an SharedUpdateExclusiveLock on the table
being vacuumed. If you try any DDL that requires an
AccessExclusiveLock, it'll have to wait until the vacuum has
completed. If you leave the DDL running then all accesses to the table
will be queued behind the ungranted AccessExclusiveLock.  It's likely
a good idea to always run DDL with a fairly short lock_timeout, just
in case this happens.

>    3)  Can I increase the  autovacuum_freeze_max_age on the tables on production system ?

Yes, but you cannot increase the per-table setting above the global
setting. Changing the global setting requires a restart.

David



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

Предыдущее
От: David Rowley
Дата:
Сообщение: Re: AutoVacuum and growing transaction XID's
Следующее
От: Hauke Homburg
Дата:
Сообщение: Question correct Way to switch Slave to master