Re: Maximum Possible Insert Performance?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Maximum Possible Insert Performance?
Дата
Msg-id 2408.1069647693@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Maximum Possible Insert Performance?  (William Yu <wyu@talisys.com>)
Список 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 по дате отправления:

Предыдущее
От: William Yu
Дата:
Сообщение: Maximum Possible Insert Performance?
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Maximum Possible Insert Performance?