Re: how many record versions

Поиск
Список
Период
Сортировка
От Marc Slemko
Тема Re: how many record versions
Дата
Msg-id Pine.NEB.4.53.0405232312440.13573@rhombus.znep.com
обсуждение исходный текст
Ответ на Re: how many record versions  (David Garamond <lists@zara.6.isreserved.com>)
Список pgsql-general
On Mon, 24 May 2004, David Garamond wrote:

> Manfred Koizar wrote:
> > You mean InnoDB cannot handle the load?
>
> Perhaps it's more appropriate to say that the disk becomes the bottleneck.

Was this attempting to do each update in a separate transaction?

If so, that is certainly expected, with whatever disk based transactional
database you use.  With innodb, you could hack around it by configuring
innodb not to flush its log to disk at every transaction, obviously at
the risk of loosing data if something crashes.

From what I have seen, I would expect innodb's multiversioning to work
better for the use you describe than postgresql's due how it implements
undo logs for updates.  However, there could well be other differences
that could make postgresql work better for your application depending on
exactly what issues you are seeing.

В списке pgsql-general по дате отправления:

Предыдущее
От: David Garamond
Дата:
Сообщение: Re: how many record versions
Следующее
От: Tom Lane
Дата:
Сообщение: Re: dump / restore questions