Re: How does the transaction buffer work?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Veikko Mäkinen <veikko(dot)makinen(at)ecom(dot)fi>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: How does the transaction buffer work?
Date: 2005-06-17 04:08:09
Message-ID: 15555.1118981289@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

=?ISO-8859-1?Q?Veikko_M=E4kinen?= <veikko(dot)makinen(at)ecom(dot)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

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Alvaro Herrera 2005-06-17 04:46:43 Re: Needed: Simplified guide to optimal memory
Previous Message Tom Lane 2005-06-17 03:47:33 Re: How to determine whether to VACUUM or CLUSTER