Re: How to force "re-TOAST" after changing STORAGE or COMPRESSION?

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема Re: How to force "re-TOAST" after changing STORAGE or COMPRESSION?
Дата
Msg-id ZRucYsOTalCdlSzU@paquier.xyz
обсуждение исходный текст
Ответ на Re: How to force "re-TOAST" after changing STORAGE or COMPRESSION?  (Laurenz Albe <laurenz.albe@cybertec.at>)
Ответы Re: How to force "re-TOAST" after changing STORAGE or COMPRESSION?
Список pgsql-general
On Tue, Oct 03, 2023 at 06:31:27AM +0200, Laurenz Albe wrote:
> On Tue, 2023-10-03 at 12:33 +1100, rob stone wrote:
>> Would running CLUSTER on the table use the new parameters for the re-
>> write?
>
> No, as far as I know.

Note that under the hoods VACUUM FULL and CLUSTER use the same code
paths when doing their stuff.

> You'd need something like
>
>   -- rewrite all tuples
>   UPDATE tab SET id = id;
>   -- get rid of the bloat
>   VACUUM (FULL) tab;

I'm afraid so, and get ready for a burst of WAL that depends on the
size of your relation if you are too aggressive with the updates.  You
could do that in periodic steps, as well.
--
Michael

Вложения

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

Предыдущее
От: Laurenz Albe
Дата:
Сообщение: Re: How to force "re-TOAST" after changing STORAGE or COMPRESSION?
Следующее
От: Dominique Devienne
Дата:
Сообщение: Re: How to force "re-TOAST" after changing STORAGE or COMPRESSION?