Re: truncate a table instead of vaccum full when count(*) is 0

Поиск
Список
Период
Сортировка
От Gregory Stark
Тема Re: truncate a table instead of vaccum full when count(*) is 0
Дата
Msg-id 87sla7zizx.fsf@oxford.xeocode.com
обсуждение исходный текст
Ответ на Re: truncate a table instead of vaccum full when count(*) is 0  (Pomarede Nicolas <npomarede@corp.free.fr>)
Список pgsql-performance
"Pomarede Nicolas" <npomarede@corp.free.fr> writes:

> Yes, I already do this on another spool table ; I run a vacuum after processing
> it, but I wondered if there was another way to keep the disk size low for this
> table.

"after processing it" might be too soon if there are still transactions around
that are a few minutes old and predate you committing after processing it.

But any table that receives as many deletes or updates as these tables do will
need to be vacuumed on the order of minutes, not days.

>> It should work, just like you describe it, with the caveat that TRUNCATE will
>> remove any old row versions that might still be visible to an older
>> transaction running in serializable mode.
>
> Shouldn't locking the table prevent this ? I mean, if I try to get an exclusive
> lock on the table, shouldn't I get one only when there's no older transaction,
> and in that case I can truncate the table safely, knowing that no one is
> accessing it due to the lock ?

It would arise if the transaction starts before you take the lock but hasn't
looked at the table yet. Then the lock table succeeds, you truncate it and
commit, then the old transaction gets around to looking at the table.

--
  Gregory Stark
  EnterpriseDB          http://www.enterprisedb.com


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

Предыдущее
От: Trygve Laugstøl
Дата:
Сообщение: Re: Best OS for Postgres 8.2
Следующее
От: Pomarede Nicolas
Дата:
Сообщение: Re: truncate a table instead of vaccum full when count(*) is 0