当前位置:网站首页>事务的隔离级别与所带来的问题
事务的隔离级别与所带来的问题
2020-11-06 21:19:00 【程序猿欧文】
一、事务的基本要素(ACID)
1、原子性(Atomicity):事务开始后所有操作,要么全部做完,要么全部不做,不可能停滞在中间环节。事务执行过程中出错,会回滚到事务开始前的状态,所有的操作就像没有发生一样。也就是说事务是一个不可分割的整体,就像化学中学过的原子,是物质构成的基本单位。
2、一致性(Consistency):事务开始前和结束后,数据库的完整性约束没有被破坏 。比如A向B转账,不可能A扣了钱,B却没收到。
3、隔离性(Isolation):同一时间,只允许一个事务请求同一数据,不同的事务之间彼此没有任何干扰。比如A正在从一张银行卡中取钱,在A取钱的过程结束前,B不能向这张卡转账。
4、持久性(Durability):事务完成后,事务对数据库的所有更新将被保存到数据库,不能回滚。
二、SQL标准的事务隔离级别(mysql默认为可重复读,oracle默认为读已提交)
- 读未提交(read uncommitted)是指,一个事务还没提交时,它做的变更就能被别的事务看到。
- 读已提交(read committed)是指,一个事务提交之后,它做的变更才会被其他事务看到。
- 可重复读(repeatable read)是指,一个事务执行过程中看到的数据,总是跟这个事务在启动时看到的数据是一致的。当然在可重复读隔离级别下,未提交变更对其他事务也是不可见的。
- 串行化(serializable ),顾名思义是对于同一行记录,“写”会加“写锁”,“读”会加“读锁”。当出现读写锁冲突的时候,后访问的事务必须等前一个事务执行完成,才能继续执行。
例子
事务一 | 事务二 |
---|---|
启动事务A,查询A=10 | 启动事务B |
查询A=10, 更新A=20 | |
查询值a1 | |
提交事务B | |
查询值a2 | |
提交事务A | |
查询值a3 |
若隔离级别是“读未提交”, 则a1的值就是20,虽然B没提交2但是结果已经A看到了
若隔离级别是“读已提交”,则a1是10,a2的值是2。事务B的更新在提交后才能被A看到。所以, a3的值也是2。
若隔离级别是“可重复读”,则a1、a2是10,a3是20。之所以a2还是10,遵循的就是这个要求:事务在执行期间看到的数据前后必须是一致的。
若隔离级别是“串行化”,则在事务B执行“将A=10改成20”的时候,会被锁住。直到事务A提交后,事务B才可以继续执行。所以从A的角度看, a1、a2值是10,a3的值是20
三、如何设置和查看隔离级别
- 读未提交:read uncommitted
- 读已提交:read committed
- 可重复读:repeatable read
- 串行化:serializable
查看隔离级别
show variables like 'transaction_isolation';
设置innodb的事务级别方法是:set 作用域 transaction isolation level 事务隔离级别,例如~
SET [SESSION | GL.........
版权声明
本文为[程序猿欧文]所创,转载请带上原文链接,感谢
https://my.oschina.net/mikeowen/blog/4556922
边栏推荐
- Python download module to accelerate the implementation of recording
- 有了这个神器,快速告别垃圾短信邮件
- Basic principle and application of iptables
- 百万年薪,国内工作6年的前辈想和你分享这四点
- Custom function form of pychar shortcut key
- 每个大火的“线上狼人杀”平台,都离不开这个新功能
- 一篇文章教会你使用Python网络爬虫下载酷狗音乐
- Natural language processing - wrong word recognition (based on Python) kenlm, pycorrector
- A brief history of neural networks
- Vue.js Mobile end left slide delete component
猜你喜欢
消息队列(MessageQueue)-分析
With the advent of tensorflow 2.0, can pytoch still shake the status of big brother?
Gather in Beijing! The countdown to openi 2020
一篇文章带你了解CSS对齐方式
ES6学习笔记(四):教你轻松搞懂ES6的新增语法
Brief introduction and advantages and disadvantages of deepwalk model
Elasticsearch数据库 | Elasticsearch-7.5.0应用搭建实战
Natural language processing - BM25 commonly used in search
If PPT is drawn like this, can the defense of work report be passed?
Python基础变量类型——List浅析
随机推荐
The AI method put forward by China has more and more influence. Tianda et al. Mined the development law of AI from a large number of literatures
Word segmentation, naming subject recognition, part of speech and grammatical analysis in natural language processing
【转发】查看lua中userdata的方法
Chainlink brings us election results into blockchain everipedia
Electron application uses electronic builder and electronic updater to realize automatic update
Read the advantages of Wi Fi 6 over Wi Fi 5 in 3 minutes
每个大火的“线上狼人杀”平台,都离不开这个新功能
5.5 controlleradvice notes - SSM in depth analysis and project practice
Natural language processing - BM25 commonly used in search
Elasticsearch数据库 | Elasticsearch-7.5.0应用搭建实战
Get twice the result with half the effort: automation without cabinet
文件过多时ls命令为什么会卡住?
What knowledge do Python automated testing learn?
The difference between gbdt and XGB, and the mathematical derivation of gradient descent method and Newton method
一篇文章教会你使用HTML5 SVG 标签
What are the common problems of DTU connection
Gather in Beijing! The countdown to openi 2020
华为云微认证考试简介
Building and visualizing decision tree with Python
Analysis of etcd core mechanism