Re: Sustained inserts per sec ... ?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Sustained inserts per sec ... ?
Дата
Msg-id 28575.1112389417@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Sustained inserts per sec ... ?  (Mike Nolan <nolan@gw.tssi.com>)
Ответы Re: Sustained inserts per sec ... ?
Список 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 по дате отправления:

Предыдущее
От: Christopher Petrilli
Дата:
Сообщение: Re: Sustained inserts per sec ... ?
Следующее
От: Alex Turner
Дата:
Сообщение: Re: Sustained inserts per sec ... ?