MySQL Race Conditions
Does this cause a race condition with MySQL (InnoDB):
-
Start Transaction.
-
Try to get record.
-
If record doesn't exist, return.
-
If record exists, delete it and add a log entry saying that is was deleted.
-
End Transaction (commit/rollback).
Is it possible for another process to start just before the delete step in 2b, detect the presence of the record and then have both processes enter item delete entries into the log?
Are there any precautions that I need to take?
Thanks.
如果你对这篇文章有疑问,欢迎到本站 社区 发帖提问或使用手Q扫描下方二维码加群参与讨论,获取更多帮助。

评论(4)

Yes, it's possible for another transaction to check the table after you've read it.
Worse yet, because of how transactions work, even after you delete the row, any new transactions that start will see the row because you haven't yet committed the delete.
SELECT ... FOR UPDATE
is one way to prevent it.
LOCK TABLE tablename
is another.
Unfortunately, since you're using an ORM, I couldn't say whether it has the ability to do either of these.


Journeyman Programmer, I believe, has the correct solution. Since you've indicated you are using a broken ORM tool (one that will not allow you to query for update) I'd suggest that you move your INSERT into the log table into a trigger on the delete operation so you will avoid the duplicate entry.
发布评论
需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。