Re: Toast space grows

From: "Pavel Rotek" <pavel(dot)rotek(at)gmail(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: Toast space grows
Date: 2008-03-07 14:11:55
Message-ID: 3556c08c0803070611p542eb317vfaf9b783172b6c3@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

2008/3/7, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>:
>
> "Pavel Rotek" <pavel(dot)rotek(at)gmail(dot)com> writes:
> > No i do not mean long running transactions... Update of log entry
> (update of
> > row in dataaction) is performed in series of short transactions, but
> during
> > short transaction there is a lot of change log value, flush, change log
> > value ,flush ..... change log value, flush actions (flush means perform
> > flush operation via JDBC driver). I'm not sure if this flush affects
> toast
> > space... Maybe this is the reason.
>
>
> You mean that you build up the 5MB log entry by adding a few lines at a
> time? That's going to consume horrid amounts of toast space, because
> each time you add a few lines, an entire new toasted field value is
> created.

well, this will be the main problem... But... do uncomitted trasactions
affect toast space?

If you have to do it that way, you'll need very frequent vacuums on this
> table (not vacuum full, as noted already) to keep the toast space from
> bloating too much. And make sure you've got max_fsm_pages set high
> enough.

i'll set max_fsm_pages to 1 000 000. It should be enough and set
autovacuum_naptime to 10 minutes. May it be?

If you can restructure your code a bit, it might be better to accumulate
> log values in a short-lived table and only store the final form of a log
> entry into the main table.

I'll try to refactor the code... My application do following thing... long
running jobs (for example long imports) are broken into series of short
transactions to store snapshot of current state of long running job. Short
transaction consist of
(begin tx, load previous log, do business action, append new log, flush, do
business action, append new log, flush, ... do business action, append new
log, flush, commit tx). Is it enough to avoid multiple "append new log,
flush" in one short transaction and keep log changes for short transaction
in the buffer (only one update of log attribute at the end of transaction)?
>From your answer probably not, but i ask for sure, it will be less work. Or
store logs for each one partial transaction and concat all at the end of
long running job??

regards, tom lane
>

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Matthew 2008-03-07 14:19:47 Re: Toast space grows
Previous Message Matthew 2008-03-07 13:56:48 Re: Toast space grows