Re: Postgres tuning? - Mailing list pgsql-general

From Scott Marlowe
Subject Re: Postgres tuning?
Date
Msg-id 1088548428.12350.41.camel@localhost.localdomain
Whole thread Raw
In response to Postgres tuning?  (Simon Windsor <simon.windsor@cornfield.org.uk>)
List pgsql-general
On Tue, 2004-06-29 at 15:30, Simon Windsor wrote:
> Hi
>
> I am in the process of converting a small multi-user application from
> MySQL, and most queries are performing better. The only noticeable
> exception is a batch load, which is half the speed of MySQL version.
>
> What are the basic parameters I should be focusing on for best
> performance ?
>
> - sort_mem
> - shared_buffers

How does the batch insert work?  Just one insert after another?  Try
wrapping them in a transaction:

begin;
insert into ... (repeat a few thousand to million times)
commit;


pgsql-general by date:

Previous
From: CSN
Date:
Subject: Re: dup(0) failed after 3195 successes: Bad file descriptor
Next
From:
Date:
Subject: Re: Postgres tuning?