MySQL如何批量更新死锁
mysql如何批量更新死锁
本文讲解"mysql怎么批量更新死锁",希望能够解决相关问题。
表结构如下:
create table `user_item` ( `id` bigint(20) not null, `user_id` bigint(20) not null, `item_id` bigint(20) not null, `status` tinyint(4) not null, primary key (`id`), key `idx_1` (`user_id`,`item_id`,`status`)) engine=innodb default charset=utf-8
sql语句如下:
update user_item set status=1 where user_id=? and item_id=?
原因分析:
mysql的事务支持与存储引擎有关,myisam不支持事务,innodb支持事务,更新时采用的是行级锁。这里采用的是innodb做存储引擎,意味着会将update语句做为一个事务来处理。前面提到行级锁必须建立在索引的基础,这条更新语句用到了索引idx_1,所以这里肯定会加上行级锁。 行级锁并不是直接锁记录,而是锁索引,如果一条sql语句用到了主键索引,mysql会锁住主键索引;如果一条语句操作了非主键索引,mysql会先锁住非主键索引,再锁定主键索引。
这个update语句会执行以下步骤:
如果在步骤1和2之间突然插入一条语句:update user_item …..where id=? and user_id=?,这条语句会先锁住主键索引,然后锁住idx_1。
蛋疼的情况出现了,一条语句获取了idx_1上的锁,等待主键索引上的锁;另一条语句获取了主键上的锁,等待idx_1上的锁,这样就出现了死锁。
解决方案:
select id from user_item where user_id=? and item_id=?
update user_item set status=? where id=? and user_id=?
关于 "mysql怎么批量更新死锁" 就介绍到此。希望多多支持硕编程。