Re: Insert performance, what should I expect? - Mailing list pgsql-performance

From Rod Taylor
Subject Re: Insert performance, what should I expect?
Date
Msg-id 1098238348.747.20.camel@home
Whole thread Raw
In response to Insert performance, what should I expect?  (Brock Henry <brock.henry@gmail.com>)
Responses Re: Insert performance, what should I expect?  (Robert Creager <Robert_Creager@LogicalChaos.org>)
List pgsql-performance
> I've done some manual benchmarking running my script 'time script.pl'
> I realise my script uses some of the time, bench marking shows that
> %50 of the time is spent in dbd:execute.

The perl drivers don't currently use database level prepared statements
which would give a small boost.

But your best bet is to switch to using COPY instead of INSERT. Two ways
to do this.

1) Drop DBD::Pg and switch to the Pg driver for Perl instead (non-DBI
compliant) which has functions similar to putline() that allow COPY to
be used.

2) Have your perl script output a .sql file with the data prepared (COPY
statements) which you feed into the database via psql.

You can probably achieve a 50% increase in throughput.


pgsql-performance by date:

Previous
From: "Matthew T. O'Connor"
Date:
Subject: Re: Insert performance, what should I expect?
Next
From: Josh Close
Date:
Subject: Re: how much mem to give postgres?