Re: Execute VACUUM FULL when DB touches a specific size ?

Поиск
Список
Период
Сортировка
От Vibhor Kumar
Тема Re: Execute VACUUM FULL when DB touches a specific size ?
Дата
Msg-id F9EC77F8-98C6-4492-9182-BB16E2E075CC@gmail.com
обсуждение исходный текст
Ответ на Re: Execute VACUUM FULL when DB touches a specific size ?  (Nilesh Govindarajan <lists@itech7.com>)
Список pgsql-admin
> That's what I was thinking to do, but how do I distinguish between the databases ? The datadir/base seems have
directorieswhose names are numbers. 

Use pg_database_size function to get the size of DB.

You can create a plpgsql function, which you can schedule using pgagent

Or

If you are writing Bash script capture the return value of pg_database_size function, in some variable and perform
vacuum.

Thanks & Regards,
Vibhor Kumar (PCP & OCP)
ITIL V3 Cerftified.

On 05-Apr-2010, at 9:38 AM, Nilesh Govindarajan wrote:

> On 04/05/10 08:54, Scott Marlowe wrote:
>> On Sun, Apr 4, 2010 at 8:21 PM, Nilesh Govindarajan<lists@itech7.com>  wrote:
>>> Hi,
>>>
>>> I wish to execute VACUUM FULL when DB touches a specific size. How to do it
>>> ?
>>>
>>> I'm aware about the caveats of VACUUM FULL.
>>>
>>
>> Write a bash script that cds to the data dir and runs du -s, grabs the
>> value, and if it's over a certain size then run vacuum full.
>
>
>
> --
> Nilesh Govindarajan
> Site & Server Administrator
> www.itech7.com
> मेरा भारत महान !
> मम भारत: महत्तम भवतु !
>
> --
> Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-admin


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

Предыдущее
От: Nilesh Govindarajan
Дата:
Сообщение: Re: Execute VACUUM FULL when DB touches a specific size ?
Следующее
От: Guillaume Lelarge
Дата:
Сообщение: Re: Execute VACUUM FULL when DB touches a specific size ?