Re: Inserts optimization?

From: Marc Cousin <mcousin(at)sigma(dot)fr>
To: "Francisco Reyes" <lists(at)stringsutils(dot)com>
Cc: "Chris" <dmagick(at)gmail(dot)com>, "Pgsql performance" <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Inserts optimization?
Date: 2006-04-14 12:00:38
Message-ID: 200604141400.38982.mcousin@sigma.fr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

I hope I'm not going to say stupid things, but here's what i know (or i think
i know :) ) about bacula + postgresql

If I remember correctly (I allready discussed this with Kern Sibbald a while
ago), bacula does each insert in its own transaction : that's how the program
is done, and of course it works ok with mysql and MyIsam tables, as mysql
doesn't have transactions with myisam...

So, you'll probably end up being slowed down by WAL fsyncs ... and you won't
have a lot of solutions. Maybe you should start with trying to set fsync=no
as a test to confirm that (you should have a lot of iowaits right now if you
haven't disabled fsync).

For now, I only could get good performance with bacula and postgresql when
disabling fsync...

On Thursday 13 April 2006 20:45, Francisco Reyes wrote:
> Chris writes:
> > If you can, use copy instead:
> > http://www.postgresql.org/docs/8.1/interactive/sql-copy.html
>
> I am familiar with copy.
> Can't use it in this scenario.
>
> The data is coming from a program called Bacula (Backup server).
> It is not static data.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: Don't 'kill -9' the postmaster

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Julien Drouard 2006-04-14 13:13:43 pg_toast size
Previous Message Michael Stone 2006-04-14 11:49:14 Re: Inserts optimization?