MySQL Forums
Forum List  »  InnoDB

Re: Solution for table lock or deadlock in Mysql Database
Posted by: Peter Brawley
Date: August 09, 2022 08:48AM

Can't see the transaction/rollback code or query details, so I can't contribute any detailed insights.

Minimally, a deadlock occurs when 2 transactions must each complete before the other does. Naturally, the longer and more complex the transaction, the more likely deadlocks will occur.

For most circumstances, then, the shorter the transaction the better.

And for most deadlocks, the short solution is to ensure that the transaction is coded to retry when deadlock is detected.

If that doesn't resolve deadlocks in this transaction, you'll need to analyse it in detail. It can be torturous. Consider reading https://dev.mysql.com/blog-archive/innodb-data-locking-part-3-deadlocks/ down to the word "retry", then follow the detailed cmds.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Solution for table lock or deadlock in Mysql Database
402
August 09, 2022 08:48AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.