Re: vacuum, vacuum full and problems releasing disk space

Поиск
Список
Период
Сортировка
От Guy Helmer
Тема Re: vacuum, vacuum full and problems releasing disk space
Дата
Msg-id AA6F9A6A-8BBE-4F2A-B2E6-A5C590DBDF74@palisadesystems.com
обсуждение исходный текст
Ответ на Re: vacuum, vacuum full and problems releasing disk space  (Horaci Macias <hmacias@avaya.com>)
Ответы Re: vacuum, vacuum full and problems releasing disk space  (Horaci Macias <hmacias@avaya.com>)
Список pgsql-general
BTW, it's not a problem to query data across multiple days as long as you query from the parent table -- Postgresql
willuse the child table constraints to search all the child tables that could contain data. 

Guy

On May 10, 2012, at 11:01 AM, Horaci Macias wrote:

> thanks Guy. I had thought about using per-day tables (although I didn't know about child tables) but my problem is
thatsome entries are related and they can span several minutes, so my worry is that I end up not finding all the right
entrieswhen I search for entries that happen close to the end of day / start of day time. 
> Anyway, worth a thought for sure so thanks.
>
> H
>
> On 10/05/12 16:42, Guy Helmer wrote:
>> On May 10, 2012, at 4:31 AM, Horaci Macias wrote:
>>
>>> Hi everybody,
>>>
>>> I'm running postgres 9.1 and having disk space problems.
>>> My application captures information 24x7 and stores it into the database. This includes several bytea and can be
~5Mentries a day, so the size can be an issue after several days. 
>>> My application also cleans up entries older than 10 days; it does this every night and the delete operations are
happeningsuccessfully. I cannot truncate the tables as they contain both stale and active data. 
>>> The database is able to store all the entries for ~15 days without problems, but for some reason the deletion of
oldentries is not freeing up the space (or the insertion of new entries is not reusing the space used by old entries)
becauseafter running the application for ~20days I run out of space on disk. 
>>> I've been reading on this forum and the postgres documentation; vacuum full is not recommended and apparently
vacuumshould be all I need. I'm using autovacuum but this doesn't seem to be solving the problem (perhaps because while
vacuumis running the application keeps inserting entries 24x7?) 
>>>
>>> Just to clarify, I don't really care if the disk space is returned to the OS; what I need though is to be sure that
Ican keep a window of 10 days of records (assuming of course my HD is big enough for those 10 days, which seems to be
thecase). 
>>>
>>> Some questions:
>>> * Although not being generally recommended, I've read that vacuum full is sometimes the only choice when large
deletionsare in place in order to maintain the database. Is this the case here? 
>>> * Should I try to have a "maintenance window" and stop all inserts/writes while vacuum is running? If so, is there
anyway to configure at what time vacuum will be executed by autovacuum or should I rely on cron-type jobs for this? and
isthere any way to prevent external connections at certain times of day to make sure inserts/writes don't happen while
vacuumis going, or again I should use cron-type jobs for this? 
>>> * Any other suggestions/ideas to troubleshoot this or any pointers to further documentation?
>> I would expect a plain VACUUM to make unused space available for re-use -- not sure why it would not be helping.
>>
>> Since Postgresql can have tables that are children of tables, a neat trick in this situation is to create per-day
childtables and insert the new data directly into the appropriate per-day table; with this approach, deleting old data
isaccomplished by simply dropping outdated tables and thereby avoiding VACUUM completely. With constraints on the child
tables,Postgresql can optimize a query on the parent table by knowing what child table has data from what day and will
onlycheck child tables that would have data for a given query. 
>>
>> For example, I have a table called data_tbl, and child per-day tables like data_tbl_ts_20120509. The child table
data_tbl_ts_20120509has constraint: 
>>     "data_tbl_20120509_ts_check" CHECK (ts>= '2012-05-08 19:00:00-05'::timestamp with time zone AND ts<  '2012-05-09
19:00:00-05'::timestampwith time zone)" 
>> (each child table has data from 00:00:00 GMT to 23:59:59 GMT for that day)
>>
>> Each day on my systems, a cron job creates the child table, constraints on the child table, and index(es) for the
childtable to hold the next day's data, and another cron job drops any outdated child tables. I believe the command to
createthe example child table above would have been: 
>>
>> CREATE TABLE data_tbl_ts_20120509 (CHECK (ts>= '2012-05-08 19:00:00-05'::timestamp with time zone AND ts<
'2012-05-0919:00:00-05'::timestamp with time zone)) INHERITS (data_tbl) 
>>
>> (followed by any necessary GRANT commands to provide access to the new child table)
>>
>> Hope this helps,
>> Guy
>>
>>


--------
This message has been scanned by ComplianceSafe, powered by Palisade's PacketSure.

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

Предыдущее
От: Lee Hachadoorian
Дата:
Сообщение: Multiple COPY statements
Следующее
От: Guy Helmer
Дата:
Сообщение: Re: vacuum, vacuum full and problems releasing disk space