From: | Mauri Sahlberg <Mauri(dot)Sahlberg(at)pretax(dot)net> |
---|---|
To: | pgsql-admin(at)postgresql(dot)org |
Cc: | petri(dot)hilska(at)pretax(dot)net |
Subject: | Parallel transactions failing oddly |
Date: | 2003-07-31 13:01:09 |
Message-ID: | 1059656469.4582.15.camel@taekwondo.intra.pretax.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
Hi,
Either we have found a bug in Postgres (which I seriously doubt) or we
are being stupid clever enough way to not notice it.
We have five complex "transactions" that are executed thru pq++/c++
interface. If we run them one by one everything goes fine. But if I
run them in parallel - in separate processes - all but the first one
claiming the lock for "ryhmalaiset"-table will fail. And they will
fail as soon as the first one is finished by trying to insert
duplicate row in the shared table. Incidentally this row would also be
the very first row they are trying to insert. They all run the same code
but with different data.
Each transaction fails in the following insert:
LOOP
SELECT * INTO r FROM kelaaryhma(aToimiala, aKielikoodi, pKoodi);
SELECT INTO pRyhmalaiset * FROM ryhmalaiset
WHERE
toimiala = aToimiala AND
ryhma = pKoodi AND
kuukausi = aKuukausi AND
vuosi = aVuosi;
IF NOT FOUND THEN
aMessage:= pKoodi::VARCHAR(16)||''/''||aKoodi::VARCHAR(16);
RAISE NOTICE ''ins-ryhmalaiset %'', aMessage;
INSERT INTO ryhmalaiset
(toimiala, ryhma, jasen, kuukausi, vuosi, ajettu)
VALUES
(aToimiala, pKoodi, aKoodi, aKuukausi, aVuosi,
''now''::timestamp);
END IF;
...
Where (toimiala, ryhma, kuukausi, jasen, vuosi) are primary index
fields. The "IF NOT FOUND" should ensure that no duplicate inserts are
attempted but somehow it just fails when two or more processess are
run.
Without lock on "ryhmalaiset" only some of the transactions will fail
and some will not.
Any ideas what we are doing wrong?
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Treat | 2003-07-31 14:07:16 | Re: 7.3.4 RPM ready for RH 7.1 and RH 7.2 |
Previous Message | pgboy | 2003-07-31 12:51:09 | Re: storage calculations |