Re: BUG #4945: Parallel update(s) gone wild - Mailing list pgsql-bugs

From Dan Boeriu
Subject Re: BUG #4945: Parallel update(s) gone wild
Date
Msg-id EF2E22898E35844BA4479BBF97078AC1FD0ABE@be10.exg4.exghost.com
Whole thread Raw
In response to BUG #4945: Parallel update(s) gone wild  ("dan boeriu" <dan.boeriu@roost.com>)
List pgsql-bugs
Is there a workaround?
To us this is pretty bad news; we receive updates from several partners and=
 constantly update the counts like in the example I sent you...
Obviously we can serialize the updates but that would be pretty sad thing t=
o do in a database.
Realistically - when will we see this fixed (I understand it has pretty low=
 priority...) ?

Thanks a bunch for your time,

Dan Boeriu
Senior Architect - Roost.com
P: (415) 742 8056
Roost.com - 2008 Inman Award Winner for Most Innovative New Technology




-----Original Message-----
From: Tom Lane [mailto:tgl@sss.pgh.pa.us]
Sent: Thu 7/30/2009 2:34 PM
To: Dan Boeriu
Cc: Robert Haas; Craig Ringer; PostgreSQL bugs
Subject: Re: [BUGS] BUG #4945: Parallel update(s) gone wild=20
=20
"Dan Boeriu" <dan.boeriu@roost.com> writes:
> Attached is the reproducible test case - I was able to reproduce the prob=
lem on 32 and 64 bit 8.3.6 and 8.4.0 RedHat 5.3 kernel 2.6.18-128.1.16.el5 =
#1 SMP

I looked at this a bit.  It's the same issue discussed at
http://archives.postgresql.org/pgsql-bugs/2008-09/msg00045.php
namely, that the second update finds itself trying to update a large
number of tuples that were already updated since its snapshot was taken.
That means it has to re-verify that the updated versions of those tuples
meet its WHERE qualification.  That's done by a function EvalPlanQual
that's pretty darn inefficient for complex queries like this one.
It's essentially redoing the join (and recomputing the whole sub-SELECT)
for each row that needs to be updated.

Someday I'd like us to redesign that mechanism, but don't hold
your breath ...

            regards, tom lane

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #4945: Parallel update(s) gone wild
Next
From: Alvaro Herrera
Date:
Subject: Re: Fwd: BUG #4953: Crash with xml functions