Re: vacuum full doubled database size

Поиск
Список
Период
Сортировка
От Fabio Ugo Venchiarutti
Тема Re: vacuum full doubled database size
Дата
Msg-id e0e4f4c2-ff08-e410-8ffb-10dd51801c0f@ocado.com
обсуждение исходный текст
Ответ на Re: vacuum full doubled database size  (Ron <ronljohnsonjr@gmail.com>)
Ответы RE: vacuum full doubled database size
Re: vacuum full doubled database size
Список pgsql-general
On 13/03/2020 15:15, Ron wrote:
> This is why I'd VACUUM FULL in a planned manner, one or two tables at a 
> time, and *locally* from crontab.

That's not really viable on any remotely busy system: VACUUM FULL claims 
exclusive table locks, causing queries to hang 
(https://www.postgresql.org/docs/current/sql-vacuum.html#NOTES mentions 
this too).

Tools like pg_repack can do some live shrinking.

I've also had some success at reclaiming space without large scale locks 
by carefully crafting some atomic DELETE + INSERT in order to force 
tuples from the tail end into gaps at lower CTIDs (physical page 
address) that were made available by previous plain VACUUMs - regular 
VACUUM will clip data files if all the tuples beyond a given offset are 
dead.



> 
> On 3/13/20 8:41 AM, Zwettler Markus (OIZ) wrote:
>>
>> We did a "vacuum full" on a database which had been interrupted by a 
>> network outage.
>>
>> We found the database size doubled afterwards.
>>
>> Autovacuum also found a lot of orphaned tables afterwards.
>>
>> The ophan temp objects went away after a cluster restart while the db 
>> size remained doubled.
>>
>> Any idea?
>>
>> Postgres 9.6.17
>>
> 
> -- 
> Angular momentum makes the world go 'round.

-- 
Regards

Fabio Ugo Venchiarutti
OSPCFC Network Engineering Dpt.
Ocado Technology

-- 


Notice: 
This email is confidential and may contain copyright material of 
members of the Ocado Group. Opinions and views expressed in this message 
may not necessarily reflect the opinions and views of the members of the 
Ocado Group.

If you are not the intended recipient, please notify us 
immediately and delete all copies of this message. Please note that it is 
your responsibility to scan this message for viruses.

References to the 
"Ocado Group" are to Ocado Group plc (registered in England and Wales with 
number 7098618) and its subsidiary undertakings (as that expression is 
defined in the Companies Act 2006) from time to time. The registered office 
of Ocado Group plc is Buildings One & Two, Trident Place, Mosquito Way, 
Hatfield, Hertfordshire, AL10 9UL.



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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Streaming replication - 11.5
Следующее
От: Kevin Brannen
Дата:
Сообщение: RE: vacuum full doubled database size