共计 8131 个字符,预计需要花费 21 分钟才能阅读完成。
悲观锁介绍
悲观锁,正如其名,它指的是对数据被外界(包括本系统当前的其他事务,以及来自外部系统的事务处理)修改持保守态度,因此,在整个数据处理过程中,将数据处于锁定状态。悲观锁的实现,往往依靠数据库提供的锁机制(也只有数据库层提供的锁机制才能真正保证数据访问的排他性,否则,即使在本系统中实现了 加锁机制,也无法保证外部系统不会修改数据)。
使用场景举例 :以 MySQL InnoDB 为例
商品 goods 表中有一个字段 status,status 为 1 代表商品未被下单,status 为 2 代表商品已经被下单,那么我们对某个商品下单时必须确保该商品 status 为 1。假设商品的 id 为 1。
1 如果不采用锁,那么操作方法如下:
//1. 查询出商品信息
select status from t_goods where id=1;
//2. 根据商品信息生成订单
insert into t_orders (id,goods_id) values (null,1);
//3. 修改商品 status 为 2
update t_goods set status=2;
上面这种场景在高并发访问的情况下很可能会出现问题。
前面已经提到,只有当 goods status 为 1 时才能对该商品下单,上面第一步操作中,查询出来的商品 status 为 1。但是当我们执行第三步 Update 操作的时候,有可能出现其他 人先一步对商品下单把 goods status 修改为 2 了,但是我们并不知道数据已经被修改了,这样就可能造成同一个商品被下单 2 次,使得数据不一致。所以说这种方式是不安全的。
2 使用悲观锁来实现:
在上面的场景中,商品信息从查询出来到修改,中间有一个处理订单的过程,使用悲观锁的原理就是,当我们在查询出 goods 信息后就把当前的数据锁定,直到我们修改完毕后再解锁。那么在这个过程中,因为 goods 被锁定了,就不会出现有第三者来对其进行修改了。
注:要使用悲观锁,我们必须关闭 mysql 数据库的自动提交属性,因为 MySQL 默认使用 autocommit 模式,也就是说,当你执行一个更新操作后,MySQL 会立刻将结果进行提交。
我们可以使用命令设置 MySQL 为非 autocommit 模式:
set autocommit=0;
设置完 autocommit 后,我们就可以执行我们的正常业务了。具体如下:
//0. 开始事务
begin;/begin work;/start transaction; (三者选一就可以)
//1. 查询出商品信息
select status from t_goods where id=1 for update;
//2. 根据商品信息生成订单
insert into t_orders (id,goods_id) values (null,1);
//3. 修改商品 status 为 2
update t_goods set status=2;
//4. 提交事务
commit;/commit work;
注:上面的 begin/commit 为事务的开始和结束,因为在前一步我们关闭了 mysql 的 autocommit,所以需要手动控制事务的提交,在这里就不细表了。
上面的第一步我们执行了一次查询操作:select status from t_goods where id=1 for update;
与普通查询不一样的是,我们使用了 select…for update 的方式,这样就通过数据库实现了悲观锁。此时在 t_goods 表中,id 为 1 的 那条数据就被我们锁定了,其它的事务必须等本次事务提交之后才能执行。这样我们可以保证当前的数据不会被其它事务修改。
注:需要注意的是,在事务中,只有 SELECT … FOR UPDATE 或 LOCK IN SHARE MODE 同一笔数据时会等待其它事务结束后才执行,一般 SELECT … 则不受此影响。拿 上面的实例来说,当我执行 select status from t_goods where id=1 for update; 后。我在另外的事务中如果再次执行 select status from t_goods where id=1 for update; 则第二个事务会一直等待第一个事务的提交,此时第二个查询处于阻塞的状态,但是如果我是在第二个事务中执行 select status from t_goods where id=1; 则能正常查询出数据,不会受第一个事务的影响。
补充:MySQL select…for update 的 Row Lock 与 Table Lock
上面我们提到,使用 select…for update 会把数据给锁住,不过我们需要注意一些锁的级别,MySQL InnoDB 默认 Row-Level Lock,所以只有「明确」地指定主键,MySQL 才会执行 Row lock (只锁住被选取的数据),否则 MySQL 将会执行 Table Lock (将整个数据表单给锁住)。
举例说明:
mysql> select * from t_goods;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 1 | 1 | 道具 |
| 2 | 1 | 装备 |
+----+--------+------+
2 rows in set
mysql>
注:为了测试数据库锁,我使用两个 console 来模拟不同的事务操作,分别用 console1、console2 来表示。
例 1: (明确指定主键,并且有此数据,row lock)
console1:查询出结果,但是把该条数据锁定了
mysql> select * from t_goods where id=1 for update;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 1 | 1 | 道具 |
+----+--------+------+
1 row in set
mysql>
console2:查询被阻塞
mysql> select * from t_goods where id=1 for update;
console2:如果 console1 长时间未提交,则会报错
mysql> select * from t_goods where id=1 for update; ERROR 1205 : Lock wait timeout exceeded; try restarting transaction
例 2: (明确指定主键,若查无此数据,无 lock)
console1:查询结果为空
mysql> select * from t_goods where id=3 for update; Empty set
console2:查询结果为空,查询无阻塞,说明 console1 没有对数据执行锁定
mysql> select * from t_goods where id=3 for update; Empty set
例 3: (无主键,table lock)
console1:查询 name= 道具 的数据,查询正常
mysql> select * from t_goods where name='道具' for update;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 1 | 1 | 道具 |
+----+--------+------+
1 row in set
mysql>
console2:查询 name= 装备 的数据,查询阻塞,说明 console1 把表给锁住了
mysql> select * from t_goods where name='装备' for update;
console2:若 console1 长时间未提交,则查询返回为空
mysql> select * from t_goods where name='装备' for update; Query OK, -1 rows affected
例 4: (主键不明确,table lock)
console1:查询正常
mysql> begin;
Query OK, 0 rows affected
mysql> select * from t_goods where id>0 for update;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 1 | 1 | 道具 |
| 2 | 1 | 装备 |
+----+--------+------+
2 rows in set
mysql>
console2:查询被阻塞,说明 console1 把表给锁住了
mysql> select * from t_goods where id>1 for update;
例 5: (主键不明确,table lock)
console1:
mysql> begin;
Query OK, 0 rows affected
mysql> select * from t_goods where id<>1 for update;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 2 | 1 | 装备 |
+----+--------+------+
1 row in set
mysql>
console2:查询被阻塞,说明 console1 把表给锁住了
mysql> select * from t_goods where id<>2 for update;
console1:提交事务
mysql> commit; Query OK, 0 rows affected
console2:console1 事务提交后,console2 查询结果正常
mysql> select * from t_goods where id<>2 for update;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 1 | 1 | 道具 |
+----+--------+------+
1 row in set
mysql>
以上就是关于数据库主键对 MySQL 锁级别的影响实例,需要注意的是,除了主键外,使用索引也会影响数据库的锁定级别
举例:
我们修改 t_goods 表,给 status 字段创建一个索引
修改 id 为 2 的数据的 status 为 2,此时表中数据为:
mysql> select * from t_goods;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 1 | 1 | 道具 |
| 2 | 2 | 装备 |
+----+--------+------+
2 rows in set
mysql>
例 6: (明确指定索引,并且有此数据,row lock)
console1:
mysql> select * from t_goods where status=1 for update;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 1 | 1 | 道具 |
+----+--------+------+
1 row in set
mysql>
console2:查询 status= 1 的数据时阻塞,超时后返回为空,说明数据被 console1 锁定了
mysql> select * from t_goods where status=1 for update; Query OK, -1 rows affected
console2:查询 status= 2 的数据,能正常查询,说明 console1 只锁住了行,未锁表
mysql> select * from t_goods where status=2 for update;
+----+--------+------+
| id | status | name |
+----+--------+------+
| 2 | 2 | 装备 |
+----+--------+------+
1 row in set
mysql>
例 7: (明确指定索引,若查无此数据,无 lock)
console1:查询 status= 3 的数据,返回空数据
mysql> select * from t_goods where status=3 for update; Empty set
console2:查询 status= 3 的数据,返回空数据
mysql> select * from t_goods where status=3 for update; Empty set
乐观锁介绍:
乐观锁(Optimistic Locking)相对悲观锁而言,乐观锁假设认为数据一般情况下不会造成冲突,所以在数据进行提交更新的时候,才会正式对数据的冲突与否进行检测,如果发现冲突了,则让返回用户错误的信息,让用户决定如何去做。那么我们如何实现乐观锁呢,一般来说有以下 2 种方式:
1. 使用数据版本(Version)记录机制实现,这是乐观锁最常用的一种实现 方式。何谓数据版本?即为数据增加一个版本标识,一般是通过为数据库表增加一个数字类型的“version”字段来实现。当读取数据时,将 version 字段的值一同读出,数据每更新一次,对此 version 值加一。当我们提交更新的时候,判断数据库表对应记录 的当前版本信息与第一次取出来的 version 值进行比对,如果数据库表当前版本号与第一次取出来的 version 值相等,则予以更新,否则认为是过期数 据。用下面的一张图来说明:
如上图所示,如果更新操作顺序执行,则数据的版本(version)依次递增,不会产生冲突。但是如果发生有不同的业务操作对同一版本的数据进行修 改,那么,先提交的操作(图中 B)会把数据 version 更新为 2,当 A 在 B 之后提交更新时发现数据的 version 已经被修改了,那么 A 的更新操作会失 败。
2. 乐观锁定的第二种实现方式和第一种差不多,同样是在需要乐观锁控制的 table 中增加一个字段,名称无所谓,字段类型使用时间戳(timestamp), 和上面的 version 类似,也是在更新提交的时候检查当前数据库中数据的时间戳和自己更新前取到的时间戳进行对比,如果一致则 OK,否则就是版本冲突。
使用举例 :以 MySQL InnoDB 为例
还是拿之前的实例来举:商品 goods 表中有一个字段 status,status 为 1 代表商品未被下单,status 为 2 代表商品已经被下单,那么我们对某个商品下单时必须确保该商品 status 为 1。假设商品的 id 为 1。
下单操作包括 3 步骤:
1. 查询出商品信息
select (status,status,version) from t_goods where id=#{id}
2. 根据商品信息生成订单
3. 修改商品 status 为 2
update t_goods set status=2,version=version+1where id=#{id} and version=#{version};
那么为了使用乐观锁,我们首先修改 t_goods 表,增加一个 version 字段,数据默认 version 值为 1。
t_goods 表初始数据如下:
mysql> select * from t_goods;
+----+--------+------+---------+
| id | status | name | version |
+----+--------+------+---------+
| 1 | 1 | 道具 | 1 |
| 2 | 2 | 装备 | 2 |
+----+--------+------+---------+
2 rows in set
mysql>
对于乐观锁的实现,我使用 MyBatis 来进行实践,具体如下:
Goods 实体类:
/**
* ClassName: Goods <br/>
* Function: 商品实体. <br/>
* date: 2013-5-8 上午 09:16:19 <br/>
* @author chenzhou1025@126.com
*/
public class Goods implements Serializable {
/**
* serialVersionUID: 序列化 ID.
*/
private static final long serialVersionUID = 6803791908148880587L;
/**
* id: 主键 id.
*/
private int id;
/**
* status: 商品状态:1 未下单、2 已下单.
*/
private int status;
/**
* name: 商品名称.
*/
private String name;
/**
* version: 商品数据版本号.
*/
private int version;
@Override
public String toString(){return "good id:"+id+",goods status:"+status+",goods name:"+name+",goods version:"+version;}
//setter and getter
}
GoodsDao
mapper.xml
<update id="updateGoodsUseCAS" parameterType="Goods">
<![CDATA[
update t_goods
set status=#{status},name=#{name},version=version+1
where id=#{id} and version=#{version}
]]>
</update>
GoodsDaoTest 测试类
@Test
public void goodsDaoTest(){
int goodsId = 1;
// 根据相同的 id 查询出商品信息,赋给 2 个对象
Goods goods1 = this.goodsDao.getGoodsById(goodsId);
Goods goods2 = this.goodsDao.getGoodsById(goodsId);
// 打印当前商品信息
System.out.println(goods1);
System.out.println(goods2);
// 更新商品信息 1
goods1.setStatus(2);// 修改 status 为 2
int updateResult1 = this.goodsDao.updateGoodsUseCAS(goods1);
System.out.println("修改商品信息 1"+(updateResult1==1?"成功":"失败"));
// 更新商品信息 2
goods1.setStatus(2);// 修改 status 为 2
int updateResult2 = this.goodsDao.updateGoodsUseCAS(goods1);
System.out.println("修改商品信息 2"+(updateResult2==1?"成功":"失败"));
}
输出结果:
- good id:1,goods status:1,goods name: 道具,goods version:1
- good id:1,goods status:1,goods name: 道具,goods version:1
- 修改商品信息 1 成功
- 修改商品信息 2 失败
说明:
在 GoodsDaoTest 测试方法中,我们同时查出同一个版本的数据,赋给不同的 goods 对象,然后先修改 good1 对象然后执行更新操作,执行成功。然后我们修改 goods2,执行更新操作时提示操作失败。此时 t_goods 表中数据如下:
mysql> select * from t_goods;
+----+--------+------+---------+
| id | status | name | version |
+----+--------+------+---------+
| 1 | 2 | 道具 | 2 |
| 2 | 2 | 装备 | 2 |
+----+--------+------+---------+
2 rows in set
mysql>
我们可以看到 id 为 1 的数据 version 已经在第一次更新时修改为 2 了。所以我们更新 good2 时 update where 条件已经不匹配了,所以更新不会成功,具体 sql 如下:
update t_goods set status=2,version=version+1 where id=#{id} and version=#{version};
这样我们就实现了乐观锁