I am facing a deadlock in my MySQL. How can I configure MySQL to restart transaction automatically when it encounters a deadlock?
Thanks in advance.
|
I am facing a deadlock in my MySQL. How can I configure MySQL to restart transaction automatically when it encounters a deadlock? Thanks in advance. |
||||
|
|
|
You cannot do that automatically, because the deadlock occurred, because two transactions were trying to modify the same data. If you know that simply retrying the same statements again will be the right thing to do, you need to implement this in your application. However having the database do that automatically would be irresponsible, because there might just as well be cases where your application first needs to take a look at the new situation in the database, before issuing potentially modified statements, if any at all. |
|||
|
|
http://dev.mysql.com/doc/refman/5.1/en/innodb-deadlocks.html The manual suggests that no such configuration option exists. |
|||
|
|
|
Restarting a transaction means:
Because the database engine cannot possibly know the queries which would have been executed after the deadlock occured, it cannot retry the whole thing for you (not to mention there could be application logic which would maybe execute different queries based on newly changed database data). |
|||
|
|
|
Well, you can't and it would not make sense. It's up to your application to cope with deadlock and how it's done depends very much on your business logic, e.g. catch the exception, wait some seconds, retry x times ... |
|||
|
|