Re: Sustained inserts per sec ... ? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Sustained inserts per sec ... ?
Date
Msg-id 28575.1112389417@sss.pgh.pa.us
Whole thread Raw
In response to Re: Sustained inserts per sec ... ?  (Mike Nolan <nolan@gw.tssi.com>)
Responses Re: Sustained inserts per sec ... ?
List pgsql-performance
Mike Nolan <nolan@gw.tssi.com> writes:
> Well, I just did an insert of 27,500 records with 9 fields, averaging
> around 118 bytes per record, each insert statement coming from a separate
> SQL statement fed to psql, and it took a bit over 4 minutes, or about
> 106 inserts per second.

Is that with a separate transaction for each insert command?  I can get
significantly higher rates on my devel machine if the inserts are
bundled into transactions of reasonable length.

With fsync on, you can't expect to get more than about one commit per
disk rotation (with a single inserting process), so with say a 7200RPM
drive (120 revs/sec) the above is a pretty good fraction of the
theoretical limit.

            regards, tom lane

pgsql-performance by date:

Previous
From: Christopher Petrilli
Date:
Subject: Re: Sustained inserts per sec ... ?
Next
From: Alex Turner
Date:
Subject: Re: Sustained inserts per sec ... ?