当前位置:网站首页>On the concurrency of update operation
On the concurrency of update operation
2020-11-08 13:52:00 【osc_7eqzxl4g】
In a high concurrency scenario , This is often the case :
A Please come here , Look up a piece of data , Conduct update operation , meanwhile B Please come here at this time , Query this data , And operate . And then there will be B stay A After that, the query operation will be carried out , But the actual B But the data is A Cover .
Table name A, Field called number, As follows SQL sentence :
A operation sentence 1:select num from store where id='1';
Suppose that at this point a gets num= 99
B operation sentence 2:select num from store where id='1';
Because Party A has not yet update operation , B also got num= 99
Now A Conduct update operation
update store set num =${num} +1 where id='1';
At this time, it is written to the database num That is to say 100
here B The request also initiated the update operation :
update store set num =${num} +1 where id='1';
Our expectation at this time should have been 101 Of , But actually B I wrote in the database again 100
Solution :
(1) Introduce the concept of a version number , In the table A Add one version Field
A operation sentence 1:select num,version from store where id='1';
Suppose that at this point a gets num= 99 version =1
B operation sentence 2:select num,version from store where id='1';
Because Party A has not yet update operation , B also got num= 99 version=1
Now A Conduct update operation
update store set num =${num} +1 where id='1' and version = ${version};
At this time, it is written to the database num That is to say 100, version =2
here B The request also initiated the update operation :
update store set num =${num} +1 where id='1' and version = ${version} ;
At this time, we found the condition version = 1 Don't set up , Because the last step is version Have been to 2 了 , therefore update Cannot update .
(2) Solution :update A set number=number+1 where id=1; Statements are processed directly
Table name A, Field called number, As follows SQL sentence :
sentence 1:update A set number=number+1 where id=1;
sentence 2:update A set number=number+2 where id=1;
Suppose these two SQL The statement is simultaneously mysql perform ,id=1 In the record number The original value of the field is 99, So is it possible that :
sentence 1 and 2 Because at the same time , They got number The values are all 99, It's all in 10 On the basis of 1 and 2, Lead to the final number Is updated to 100 or 101, instead of 102
This is actually Relational database itself needs to solve the problem . First , They were also MySQL perform , What you mean is that they are executed concurrently , The concurrent transaction is supported by special theory in relational database - ACID, The theory of transaction parallelism , All relational databases implement , Include Oracle, MySQL We need to follow this principle .
The simple understanding is the principle of lock . This is the first time update Will hold id=1 This line records Exclusive lock , the second update You need to have an exclusive lock on this record to modify it , Normal word , the second update It will block , Until the first one update Submit successfully , He'll get the lock , To modify the data .
in other words , According to the theory of relational database , these two items. update If they all succeed ,id=1 Of number It must be modified to 22. If not 22, That's a serious problem with database implementation bug.
版权声明
本文为[osc_7eqzxl4g]所创,转载请带上原文链接,感谢
边栏推荐
- How to solve the difference between NAT IP and port IP
- Windows下快递投递柜、寄存柜的软件初探
- Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
- Share the experience of passing the PMP examination
- 漫画:寻找股票买入卖出的最佳时机(整合版)
- 在51CTO学院Get到PMP证书
- 三、函数的参数
- 别再在finally里面释放资源了,解锁个新姿势!
- 软件开发中如何与人协作? | 每日趣闻
- 华为在5G手机市场占据绝对优势,市调机构对小米的市占出现分歧
猜你喜欢
华为在5G手机市场占据绝对优势,市调机构对小米的市占出现分歧
PMP experience sharing
OR Talk NO.19 | Facebook田渊栋博士:基于蒙特卡洛树搜索的隐动作集黑盒优化 - 知乎
供货紧张!苹果被曝 iPhone 12 电源芯片产能不足
This year's salary is 35W +! Why is the salary of Internet companies getting higher and higher?
Ali! Visual computing developer's series of manuals (with internet disk link)
最全!阿里巴巴经济体云原生实践!(附网盘链接)
Welcome to offer, grade P7, face-to-face sharing, 10000 words long text to take you through the interview process
Python basic syntax
It's worth seeing! EMR elastic low cost offline big data analysis best practice (with network disk link)
随机推荐
STM32CubeIDE下载安装-GPIO基本配置操作-Debug调试(基于CMSIS DAP Debug)
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
Q & A and book giving activities of harbor project experts
2035我们将建成这样的国家
How to write a resume and project
Blockchain weekly: the development of digital currency is written into the 14th five year plan; Biden invited senior adviser of MIT digital currency program to join the presidential transition team; V
Flink从入门到真香(6、Flink实现UDF函数-实现更细粒度的控制流)
用科技赋能教育创新与重构 华为将教育信息化落到实处
为什么 Schnorr 签名被誉为比特币 Segwit 后的最大技术更新
Flink从入门到真香(7、Sink数据输出-文件)
wanxin finance
Windows下快递投递柜、寄存柜的软件初探
The progress bar written in Python is so wonderful~
nat转换的ip跟端口ip不相同的解决方法
模板引擎的整理归纳
Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
啥是数据库范式
Tencent, which is good at to C, how to take advantage of Tencent's cloud market share in these industries?
你的云服务器可以用来做什么?云服务器有什么用途?
Or talk No.19 | Facebook Dr. Tian Yuandong: black box optimization of hidden action set based on Monte Carlo tree search