Re: Maximum Possible Insert Performance? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Maximum Possible Insert Performance?
Date
Msg-id 2408.1069647693@sss.pgh.pa.us
Whole thread Raw
In response to Maximum Possible Insert Performance?  (William Yu <wyu@talisys.com>)
List pgsql-performance
William Yu <wyu@talisys.com> writes:
> [ we don't care about data integrity ]
> I already have fsync off. Short of buying more hardware -- which I will
> probably do anyways once I figure out whether I need more CPU, memory or
> disk -- what else can I do to max out the speed? Operation mix is about
> 50% select, 40% insert, 10% update.

Batch operations so you commit more than one insert per transaction.
(With fsync off, this isn't such a killer consideration as it would be
with fsync on, but the per-transaction overhead is still nontrivial.)

Get rid of as many integrity constraints as you feel can reasonably be
postponed to the final upload.  FK checks are particularly painful.

Eliminate indexes where possible.

Also (I hate to say this, but...) you should consider using Some Other
Database.  "I don't care about data integrity, only speed" sounds like
a good fit to MySQL ...

            regards, tom lane

pgsql-performance by date:

Previous
From: William Yu
Date:
Subject: Maximum Possible Insert Performance?
Next
From: Josh Berkus
Date:
Subject: Re: Maximum Possible Insert Performance?