Re: pessimal trivial-update performance - Mailing list pgsql-hackers

From Robert Haas
Subject Re: pessimal trivial-update performance
Date
Msg-id AANLkTikO81Wqgxe2ULNwrbGHRfVqVcuRUQ61cFX3vjlo@mail.gmail.com
Whole thread Raw
In response to Re: pessimal trivial-update performance  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: pessimal trivial-update performance
List pgsql-hackers
On Sun, Jul 4, 2010 at 12:11 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Robert Haas <robertmhaas@gmail.com> writes:
>> CREATE OR REPLACE FUNCTION update_tab() RETURNS void AS $$
>> BEGIN
>>       INSERT INTO tab VALUES (0);
>>       FOR i IN 1..100000 LOOP
>>               UPDATE tab SET x = x + 1;
>>       END LOOP;
>> END
>> $$ LANGUAGE plpgsql;
>
> I believe that none of the dead row versions can be vacuumed during this
> test.

Yep, you seem to be right.  The table grows to 802 pages.  But why is
it that we can't vacuum them as we go along?

> So yes, it sucks, but is it representative of real-world cases?

Hard to say, but I think it probably is to some degree.  I stumbled on
it more-or-less by accident, but it wouldn't surprise me to find out
that there are people doing such things in real applications.  It's
not uncommon to want to store an updateable counter somewhere.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise Postgres Company


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: pessimal trivial-update performance
Next
From: Pavel Stehule
Date:
Subject: proof concept: do statement parametrization