Re: How does the transaction buffer work?

Поиск
Список
Период
Сортировка
Искать
От
Tom Lane
Тема
Re: How does the transaction buffer work?
Дата
Msg-id
15555.1118981289@sss.pgh.pa.us
Ответ на
Список
Дерево обсуждения
How does the transaction buffer work? Veikko Mäkinen <veikko.makinen@ecom.fi>
Re: How does the transaction buffer work? Tom Lane <tgl@sss.pgh.pa.us>
Re: How does the transaction buffer work? Rod Taylor <pg@rbt.ca>
Re: How does the transaction buffer work? Josh Berkus <josh@agliodbs.com>
Re: How does the transaction buffer work? John A Meinel <john@arbash-meinel.com>
Re: How does the transaction buffer work? PFC <lists@boutiquenumerique.com>
=?ISO-8859-1?Q?Veikko_M=E4kinen?=  writes:
> How does Postgres (8.0.x) buffer changes to a database within a 
> transaction? I need to insert/update more than a thousand rows (mayde 
> even more than 10000 rows, ~100 bytes/row) in a table but the changes 
> must not be visible to other users/transactions before every row is 
> updated.

There were some other responses already, but I wanted to add this:
there isn't any "transaction buffer" in Postgres.  The above scenario
won't cause us any noticeable problem, because what we do is mark
each row with its originating transaction ID, and then readers compare
that to the set of transaction IDs that they think are "in the past".
The number of rows affected by a transaction is not really a factor
at all.

Now of course this isn't Nirvana, you must pay somewhere ;-) and our
weak spot is the need for VACUUM.  But you have no need to fear large
individual transactions.

			regards, tom lane
В списке pgsql-performance по дате отправления
От: Tom Lane
Дата:
От: Alvaro Herrera
Дата:
FAQ