Re: How does the transaction buffer work? - Mailing list pgsql-performance

From Tom Lane
Subject Re: How does the transaction buffer work?
Date
Msg-id 15555.1118981289@sss.pgh.pa.us
Whole thread Raw
In response to How does the transaction buffer work?  (Veikko Mäkinen <veikko.makinen@ecom.fi>)
Responses Re: How does the transaction buffer work?
List pgsql-performance
=?ISO-8859-1?Q?Veikko_M=E4kinen?= <veikko.makinen@ecom.fi> 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: How to determine whether to VACUUM or CLUSTER
Next
From: Alvaro Herrera
Date:
Subject: Re: Needed: Simplified guide to optimal memory