美文网首页
Mysql事务隔离级别

Mysql事务隔离级别

作者: 苏康申 | 来源:发表于2020-03-10 23:34 被阅读0次

事务的四种隔离级别

READ UNCOMMITTED(读未提交)
查看当前的隔离级别
select @@tx_isolation;

SET @@session.transaction_isolation = 'READ-UNCOMMITTED';
create database test;
use test;

create table test(
  id int primary key,
  age int not null default 0
  );

+-------+---------+------+-----+---------+-------+
| Field | Type    | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+-------+
| id    | int(11) | NO   | PRI | NULL    |       |
| age   | int(11) | NO   |     | 0       |       |
+-------+---------+------+-----+---------+-------+

insert into test(id,age) values(1,12);
mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  12 |
+----+-----+
1 row in set (0.00 sec)

---------------------------终端一------------------------------------

mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> update test set age = 21 where id = 1;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 1  Changed: 0  Warnings: 0


---------------------------终端二------------------------------------
mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  21 |
+----+-----+
1 row in set (0.01 sec)


---------------------------结果------------------------------------

最后一步读取到了 mysql 终端 1 中未提交的事务(没有 commit 提交动作),即产生了脏读,
大部分业务场景都不允许脏读出现,但是此隔离级别下数据库的并发是最好的。
READ COMMITTED(读提交)
SET @@session.transaction_isolation = 'READ-COMMITTED';

---------------------------终端一------------------------------------
1) 步骤一
mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> update test set age = 11  where id = 1;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  11 |
+----+-----+
1 row in set (0.00 sec)

2) 步骤二
mysql> commit;
Query OK, 0 rows affected (0.10 sec)

mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  11 |
+----+-----+
1 row in set (0.00 sec)

---------------------------终端二------------------------------------

1) 步骤一
mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  21 |
+----+-----+
1 row in set (0.00 sec)

2) 步骤二
mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  11 |
+----+-----+
1 row in set (0.01 sec)
---------------------------结果------------------------------------

mysql 终端 2 在开启了一个事务之后,在第一次读取 test 表(此时 mysql 终端 1 的事务还未提交)
时 age 为 21,在第二次读取 test 表(此时 mysql 终端 1 的事务已经提交)时 age 已经变为 11,
说明在此隔离级别下已经读取到已提交的事务。

REPEATABLE READ(可重复读)Mysql默认
SET @@session.transaction_isolation = 'REPEATABLE-READ';

---------------------------终端一------------------------------------
1) 步骤一
mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  11 |
+----+-----+
1 row in set (0.00 sec)

mysql> update test set age = 12  where id = 1;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  12 |
+----+-----+
1 row in set (0.00 sec)

mysql> commit;
Query OK, 0 rows affected (0.10 sec)

---------------------------终端二------------------------------------
1) 步骤一
mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  11 |
+----+-----+
1 row in set (0.00 sec)

---------------------------结果------------------------------------

mysql 终端 2 在开启了一个事务之后,在第一次读取 test 表(此时 mysql 终端 1 的事务还未提交)
时 age 为 11,在第二次读取 test 表(此时 mysql 终端 1 的事务已经提交)时 age 仍然为 11,
说明在此隔离级别下MySQL 称之为幻读

SERIALIZABLE(序列化)
---------------------------终端一------------------------------------
mysql> begin ;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from test;
+----+-----+
| id | age |
+----+-----+
|  1 |  16 |
+----+-----+
1 row in set (0.00 sec)

---------------------------终端二------------------------------------
mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> update test set age = 10  where id = 1;

ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction

---------------------------结果------------------------------------

终端一执行查询语句后处于锁定的状态,只有commit或者rollback之后,终端二的命令才可以执行,
否则会一直卡住,直到超时,其中超时参数是由 innodb_lock_wait_timeout 控制

2020.03.10 23:35 晚安

相关文章

  • 聊聊MySQL的隔离级别

    原文:聊聊MySQL的隔离级别 | MySQL隔离级别原理参考:oracle - mysql - 数据库事务隔离级...

  • mysql事务隔离级别的实现原理

    mysql事务隔离级别的实现原理 mysql innodb中的四种事务隔离级别[https://www.jians...

  • MySQL 事务隔离级别解析和实战

    MySQL 事务隔离级别解析和实战 1、MySQL 隔离界别查看 查看回话隔离级别 查看系统隔离级别 2、MySQ...

  • Mysql事务

    1) mysql事务的ACID特性 2)MySQL事务隔离级别

  • mysql隔离级别

    一、MySQL事务隔离级别 mysql默认的事务隔离级别为repeatable-read(可重复读) 1.未提交可...

  • Mac系统mysql设置事务隔离级别

    Mac系统mysql设置事务隔离级别 MySQL数据库事务隔离级别主要有四种: Serializable 串行化,...

  • 数据库事务相关

    事务隔离级别(tx_isolation)mysql 有四级事务隔离级别 每个级别都有字符或数字编号 级别symbo...

  • MYSQL事务

    常用语句 MYSQL事务,锁表 事务控制语句 事务的隔离级别 隔离级别描述产生风险READUNCOMMITTED ...

  • 面试官:说一下MySQL事务隔离级别?

    MySQL 事务隔离级别是为了解决并发事务互相干扰的问题的,MySQL 事务隔离级别总共有以下 4 种: READ...

  • mysql笔记

    mysql笔记 查看事务隔离级别 show variables like '%iso%'; 设置事务级别 mysq...

网友评论

      本文标题:Mysql事务隔离级别

      本文链接:https://www.haomeiwen.com/subject/wnbndhtx.html