Re: Deadlock when inserting from multiple processes

Поиск
Список
Период
Сортировка
От Keith
Тема Re: Deadlock when inserting from multiple processes
Дата
Msg-id CAHw75vsR_VkHdJMM2sQb9PV+VPFR8vTgfM3b8-tcNPqt3v3yfw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Deadlock when inserting from multiple processes  (Dave Johansen <davejohansen@gmail.com>)
Ответы Re: Deadlock when inserting from multiple processes  (Dave Johansen <davejohansen@gmail.com>)
Список pgsql-admin


On Fri, Apr 29, 2016 at 12:39 PM, Dave Johansen <davejohansen@gmail.com> wrote:
On Wed, Apr 27, 2016 at 1:45 PM, Keith <keith@keithf4.com> wrote:


On Wed, Apr 27, 2016 at 3:10 PM, Dave Johansen <davejohansen@gmail.com> wrote:
I'm using Postgres 9.2.15 on CentOS 7.2 with the method described below to support INSERTing from multiple processes:
http://www.postgresql.org/message-id/CAAcYxUf9o3NpiKaHdeShO_iJjm92314eX6ko0JvJidmksutkJg@mail.gmail.com

Last night, one of the processes experienced a dead lock. The error looked like this:
ERROR: deadlock detected
DETAIL: Process 23527 waits for ShareLock on transaction 1537228819; blocked by process 34184
        Process 34184 waits for ShareLock on transaction 1537228441; blocked by process 23527.

Is there anything I can do to help diagnose what the cause of this issue was?

Thanks,
Dave

Look in the postgresql logs. It should give you more info on what queries were running in each session that conflicted with each other. If you didn't have the PID as part of your log_line_prefix, that can make it a bit more challenging to figure out which sessions were which, though. I've found this prefix to be very useful (note there is a space at the end):

"%t [%r] [%p]: [%l-1] user=%u,db=%d,e=%e "

9.2 should give you enough info, but I believe more recent versions are much more verbose with their deadlock output to help with debugging.

Sorry, I didn't include that part because I was retyping the log output, but it did provide that information about the queries and it was two instances like the one that I linked to above. Basically, it's a function that wraps an INSERT with exception handling so that duplicated records won't cause an error. According to the log, the two queries were executing the actual INSERT when the deadlock happened.

Are you trying to handle an UPSERT situation (try to insert; if row exists, update instead)? I'd highly recommend upgrading to 9.5 if so. You can do the exception handling method prior to 9.5, but you run into this very situation on high traffic systems. 9.5 handle UPSERT properly.

https://wiki.postgresql.org/wiki/What's_new_in_PostgreSQL_9.5#INSERT_..._ON_CONFLICT_DO_NOTHING.2FUPDATE_.28.22UPSERT.22.29

В списке pgsql-admin по дате отправления:

Предыдущее
От: Dave Johansen
Дата:
Сообщение: Re: Best way to handle "read only" paritions
Следующее
От: Dave Johansen
Дата:
Сообщение: Re: Deadlock when inserting from multiple processes