up vote 4 down vote favorite
2
share [g+] share [fb]

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

link|improve this question
feedback

4 Answers

up vote 3 down vote accepted

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|improve this answer
Thank you! That's what I was looking for. – raquo Mar 13 '09 at 15:23
Did you use Google? That's what I used. – S.Lott Mar 13 '09 at 15:26
feedback

Try MaatKit. It has a deadlock logger.

link|improve this answer
Maatkit has been absorbed into the Percona Toolkit recently. The tool is called pt-deadlock-logger and was formerly mk-deadlock-logger. – David Oct 4 '11 at 15:29
feedback

"SHOW ENGINE INNODB STATUS" from the MySQL Command line client (not a query browser) will give you info on deadlocks.

Deadlocks can also be caused by uncommitted transactions (usually program bugs) and the person who is running the uncommited transaction will not see the problem as they will be working fine (through their data will not be committed)

Boz

link|improve this answer
feedback

Try innotop, will detect the deadlock for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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