Re: An update deadlock bug

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: 1024 <453539222(at)qq(dot)com>
Cc: pgsql-bugs <pgsql-bugs(at)lists(dot)postgresql(dot)org>
Subject: Re: An update deadlock bug
Date: 2023-03-23 15:52:05
Message-ID: 1827660.1679586725@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

"=?gb18030?B?MTAyNA==?=" <453539222(at)qq(dot)com> writes:
> Recently I found a parallel update bug£¬The steps to recurrence are as follows:
> 1,create table t1(a int, b varchar(20));
> insert into t1 values(generate_series(1,5), 'abc');
> 2, use pgbench to run parallel update:
> pgbench -U postgres -p 5432 postgres -n -r -c 10 -j 1 -T 100 -P 1 -f test.sql
> test.sql: update t1 set a = 123 where b = 'abc';
> 3, We will find "deadlock detected" in log file or terminal.

I don't see any bug here. You've got multiple clients all trying
to update the same set of rows in an unspecified order. It's
unsurprising that some of them sometimes arrive at the same pair of
rows in a different order.

> I want to figure out that if every update use sequence scan ,why deadlock happened?

Even though they're all using seqscans, there will be different
updates committing at different instants, and the live rows and
available free space will soon become wildly scrambled. If you
are expecting that "all the plans are seqscans" means "all the
sessions will operate in lockstep", you're mistaken.

regards, tom lane

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2023-03-23 18:31:35 Re: BUG #17866: behavior does not match documentation
Previous Message Tom Lane 2023-03-23 15:30:11 Re: BUG #17864: pg_notify is publishing message twice