MySQL系列之十 MySQL事务隔离实现并发控制
一、并发访问控制
实现的并发访问的控制技术是基于锁;
锁分为表级锁和行级锁,myisam存储引擎不支持行级锁;innodb支持表级锁和行级锁;
锁的分类有读锁和写锁,读锁也被称为共享锁,加读锁的时候其他的人可以读;写锁也称为独占锁或排它锁,一个写锁会阻塞其他读操作和写操作;
锁还分为隐式锁和显式锁,隐式锁由存储引擎自行管理,显式锁是用户手动添加锁;
锁策略:在锁粒度及数据安全性寻求的平衡机制。
显式锁的使用方法:lock tables tbl_name read|write
mariadb [school]> lock tables students read; #加读锁
mariadb [school]> unlock tables; #解锁
读锁:任何人都不可写
写锁:自己可以读写,但是其他人不可读写
flush tables tb_name :关闭正在打开的表(清除查询缓存),通常在备份前加全局读锁
select clause [for update | lock in share mode] 查询时加写或读锁
二、事务transactions
一组原子性的sql语句,或一个独立工作单元
1、事务遵循acid原则:
- a:atomicity原子性;整个事务中的所有操作要么全部成功执行,要么全部失败后回滚
- c:consistency一致性;数据库总是从一个一致性状态转换为另一个一致性状态
- i:isolation隔离性;一个事务所做出的操作在提交之前,是不能为其它事务所见;隔离有多种隔离级别,实现并发
- d:durability持久性;一旦事务提交,其所做的修改会永久保存于数据库中
2、事务的生命周期
显式事务:明确的规定事务的开始
隐式事务:默认为隐式事务,每执行完一句语句后直接提交
autocommit = {off|on} 开启或关闭自动提交,建议使用显式请求和提交事务,而不要使用“自动提交”功能
启动事务:start transaction;
插入标签:rollback to ##;
撤销回指定标签:rollback to ##;
全部撤销:rollback;
提交事务:commit;
删除标签:release savepoint;
mariadb [school]> start transaction; #明确指明启动一个事务 mariadb [school]> insert students(stuid,name,age,gender) values (26,'tom',22,'m'); #添加一条记录 mariadb [school]> savepoint sp26; #插入一个标签 mariadb [school]> insert students(stuid,name,age,gender) values (27,'maria',12,'f'); #再加入一条记录 mariadb [school]> select * from students where stuid in (26,27); #查看一下,可以看到刚刚插入的数据 +-------+-------+-----+--------+---------+-----------+ | stuid | name | age | gender | classid | teacherid | +-------+-------+-----+--------+---------+-----------+ | 26 | tom | 22 | m | null | null | | 27 | maria | 12 | f | null | null | +-------+-------+-----+--------+---------+-----------+ mariadb [school]> rollback to sp26; #撤销到sp26标签之前的状态 mariadb [school]> select * from students where stuid in (26,27); #查看一下,刚刚maria的信息被撤回了 +-------+------+-----+--------+---------+-----------+ | stuid | name | age | gender | classid | teacherid | +-------+------+-----+--------+---------+-----------+ | 26 | tom | 22 | m | null | null | +-------+------+-----+--------+---------+-----------+ mariadb [school]> commit; #提交事务 mariadb [school]> select * from students where stuid in (26,27); #最终的数据 +-------+------+-----+--------+---------+-----------+ | stuid | name | age | gender | classid | teacherid | +-------+------+-----+--------+---------+-----------+ | 26 | tom | 22 | m | null | null | +-------+------+-----+--------+---------+-----------+
3、事务的隔离级别
- read uncommitted 其他事务可以看到未提交的脏数据,产生脏读
- read committed 提交后其他事务可以看到修改后的数据,每次读取的数据可能不一致,不可重复读
- repeatable read 可重复读,每次看到的数据都一致,数据被修改后看不到最新数据,会产生幻读(默认设置)
- setializabile 未提交的读事务阻塞修改事务,串行执行,并发性差
mvcc: 多版本并发控制,和事务级别相关
修改事务隔离级别:服务器变量tx_isolation指定,默认为repeatable-read,可在global和session级进行设置
tx_isolation
- description: the transaction . see also set transaction isolation level.
- commandline:
--transaction-isolation=name
- scope: global, session
- dynamic: yes
- type: enumeration
- default value:
repeatable-read
- valid values:
read-uncommitted
,read-committed
,repeatable-read
,serializable
mariadb [school]> select @@tx_isolation; #默认为可重复读级别 +-----------------+ | @@tx_isolation | +-----------------+ | repeatable-read | +-----------------+ mariadb [school]> set tx_isolation='read-uncommitted'; mariadb [school]> set tx_isolation='read-committed'; mariadb [school]> set tx_isolation='repeatable-read'; mariadb [school]> set tx_isolation='serializable';
4、死锁
两个或多个事务在同一资源相互占用,并请求锁定对方占用的资源的状态会发生死锁
在a事务修改t1表的第3行,b事务修改t2表的第2行时;这时a事务去修改t2表的第2行,这时就把a事务阻塞了,然后b事务有刚刚好去修改t1表的第3行,这时b事务也被阻塞了,这时就产生了死锁。
俩个事务同时去更改对方的修改的表,互相阻塞;系统会发现死锁,会自动牺牲一个代价小的事务来解开死锁。
error 1213 (40001): deadlock found when trying to get lock; try restarting transaction
查看进程列表:mariadb [school]> show processlist;
杀死进程:mariadb [school]> kill 5;
到此这篇关于mysql系列之十 mysql事务隔离实现并发控制的文章就介绍到这了,更多相关mysql并发控制内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
到此这篇关于mysql系列之十 mysql事务隔离实现并发控制的文章就介绍到这了,更多相关mysql并发控制内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 其实我注意你很久了