vote up 2 vote down star
1

Hi,

I know that deadlocks occur inevitably when using transactions in Innodb and that they are harmless if they are treated properly by the application code - "just try it again", as the manual says.

So I was wondering - how do you detect deadlocks? Does a deadlock issue some special mysql error number? I am using PHP's mysqli extension if that matters.

Thank you.

Edit: solution found, see comments

flag

3 Answers

vote up 1 vote down check

http://dev.mysql.com/doc/refman/5.0/en/innodb-error-codes.html

1213 (ER_LOCK_DEADLOCK)

Transaction deadlock. You should rerun the transaction.

link|flag
Thank you! That's what I was looking for. – raquo Mar 13 at 15:23
Did you use Google? That's what I used. – S.Lott Mar 13 at 15:26
vote up 0 vote down

Try MaatKit. It has a deadlock logger.

link|flag
vote up 0 vote down

Try innotop, will detect the deadlock for you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.