2021-01-28

Mysql数据库下InnoDB数据引擎下的事务详解

一、什么是数据库事务?

  数据库事务( transaction)是访问并可能操作各种数据项的一个数据库操作序列,这些操作要么全部执行,要么全部不执行,是一个不可分割的工作单位。事务由事务开始与事务结束之间执行的全部数据库操作组成。

  简言之就是,更新、新增、删除的sql要么一起成功,要么一起失败(回滚)。

二、使用数据库的事务可能出现什么问题?

  可能会出现脏读、幻读、不可重复读的问题。

  1.什么是脏读?

       比如说A事务修改了一条数据,B事务读取了该条事务,A事务回滚,B事务读取了错误的数据,这叫做脏读。

  例子:数据库中张三的工资为5K,事务B读取成了8k的行为叫做脏读。

时间事务A事务B
T1开始事务 
T2 开始事务
T3张三的工资从5K改为8K(update操作) 
T4 读取到张三的工资为8k(select操作)
T5  提交事务
T6

事务提交失败回滚,数据库中张三的数据变回5K

 

  2.什么是不可重复读?

  例子:张三在一个事务中前后两次读取的工资的金额不同的情况叫做不可重复读。

时间事务A事务B
T1开始事务 
T2 开始事务
T3读取张三的工资为5K(select操作) 
T4 修改的张三的工资为8k(update操作)
T5  提交事务
T6

读取张三的工资为8K(select操作)

 

  3.什么是幻读?

  是指当事务不是独立执行时发生的一种现象,例如第一个事务对一个表中的数据进行了修改,这种修改涉及到表中的全部数据行。同时,第二个事务也修改这个表中的数据,这种修改是向表中插入\删除一行数据。那么,以后就会发生操作第一个事务的用户发现表中还有没有修改的数据行,就好象发生了幻觉一样。

  例子:初始数据库中,有张三、李四工资为5K的数据

时间事务A事务B
T1开始事务 
T2 开始事务
T3

读取张三李四的工资为5K

 
T4 

添加王五的工资为5K的数据(add操作)

/删除李四的工资为5K的数据(delete操作)

T5  提交事务
T6

修改工资为5k的员工工资改为6K(update操作)

操作影响了3条(添加操作)/1条(删除操作)数据

 
T7

查询员工工资,

(预期张三李四工资6K)

实际上张三李四王五工资为6K/张三工资为6K

 

  三、Spring是如何完成事务的,脏读幻读不可重复读是怎么解决的?

  Spring中有一个@Transactional注解/* * Copyright 2002-2016 the original author or authors.

 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *   * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *///上面就是一些版权说明的内容package org.springframework.transaction.annotation;import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Inherited;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;import org.springframework.core.annotation.AliasFor;import org.springframework.transaction.TransactionDefinition;/** * Describes transaction attributes on a method or class. * * <p>This annotation type is generally directly comparable to Spring's * {@link org.springframework.transaction.interceptor.RuleBasedTransactionAttribute} * class, and in fact {@link AnnotationTransactionAttributeSource} will directly * convert the data to the latter class, so that Spring's transaction support code * does not have to know about annotations. If no rules are relevant to the exception, * it will be treated like * {@link org.springframework.transaction.interceptor.DefaultTransactionAttribute} * (rolling back on {@link RuntimeException} and {@link Error} but not on checked * exceptions). * * <p>For specific information about the semantics of this annotation's attributes, * consult the {@link org.springframework.transaction.TransactionDefinition} and * {@link org.springframework.transaction.interceptor.TransactionAttribute} javadocs. * * @author Colin Sampaleanu * @author Juergen Hoeller * @author Sam Brannen * @since 1.2 * @see org.springframework.transaction.interceptor.TransactionAttribute * @see org.springframework.transaction.interceptor.DefaultTransactionAttribute * @see org.springframework.transaction.interceptor.RuleBasedTransactionAttribute */
//上面就是说,这个类的方法主要是处理事务的问题,具体使用到的注解去具体的注解类里面看
@Target({ElementType.METHOD, ElementType.TYPE})@Retention(RetentionPolicy.RUNTIME)@Inherited@Documentedpublic @interface Transactional { /** * Alias for {@link #transactionManager}. * @see #transactionManager */
  //事务管理器的名字默认是空的,你可以自己赋值 @AliasFor("transactionManager")//这个注解主要是标签的作用,具体实现可以去看他专门的类 String value() default ""; /** * A <em>qualifier</em> value for the specified transaction. * <p>May be used to determine the target transaction manager, * matching the qualifier value (or the bean name) of a specific * {@link org.springframework.transaction.PlatformTransactionManager} * bean definition. * @since 4.2 * @see #value */
  //去配置文件或者配置类里面找上面定义的那个名字的事务管理器的名字,找到匹配的事务管理器 @AliasFor("value") String transactionManager() default ""; /** * The transaction propagation type. * <p>Defaults to {@link Propagation#REQUIRED}. * @see org.springframework.transaction.interceptor.TransactionAttribute#getPropagationBehavior() */
  //定义事务传播方式的方法,默认是Propagation.REQUIRED枚举
  //REQUIRED 支持当前事务,如果不存在则创建一个新事务。 类似于同名的EJB事务属性,
          就是说这个传播方式下,事务内是可以嵌套事务的,子事务以主事务管理,
          网上说的事务里面不能嵌套事务操作是片面的,具体是要看事务的传播类型是怎么定义的
  //SUPPORTS 如果上下文存在事物,则支持事物加入,如果没有事物,则使用非事物的方式执行。
  //MANDATORY 该级别的事物要求上下文中必须要存在事物,否则就会抛出异常
  //REQUIRES_NEW 每次都会新建事物,并且上下文的事物挂机,执行当前新建事物完成以后,上下文事物回复再执行。
  //NOT_SUPPORTED 当前级别的特点就是上下文中存在事物,则挂起事物,执行当前逻辑,结束后回复上下文的事物。
  //NEVER 上下文中不能存在事物,一旦有事物,就抛出runtime异常,强制停止执行
  //NESTED 如果上下文中存在事物,则嵌套事物执行,如果不存在事物,则新建事物。
  //具体详情见 org.springframework.transaction.TransactionDefinition类
 Propagation propagation() default Propagation.REQUIRED; /**  * The transaction isolation level.  * <p>Defaults to {@link Isolation#DEFAULT}.  * @see org.springframework.transaction.interceptor.TransactionAttribute#getIsolationLevel()  */
   //事务的隔离级别
   //TransactionDefinition.ISOLATION_DEFAULT 使用基础数据存储的默认隔离级别。 所有其他级别对应于JDBC隔离级别。
  //
TransactionDefinition.ISOLATION_READ_UNCOMMITTED 表示脏读,不可重复读和幻像读的常数可以发生,啥问题都没解决基本不用
  //
TransactionDefinition.ISOLATION_READ_COMMITTED 一个常量,指示防止脏读;不可重复读取和幻像读取可能会发生。此级别仅禁止事务,读取行中未提交的更改
  //TransactionDefinition.ISOLATION_REPEATABLE_READ   指示防止脏读和不可重复读的常量,可能会发生幻像读取
  //TransactionDefinition.ISOLATION_SERIALIZABLE 一个常数,指示防止脏读,不可重复读和幻像读
  //具体详情见    org.springframework.transaction.TransactionDefinition
 Isolation isolation() default Isolation.DEFAULT;
/**  * The timeout for this transaction.  * <p>Defaults to the default timeout of the underlying transaction system.  * @see org.springframework.transaction.interceptor.TransactionAttribute#getTimeout()  */
   //事务超时时间,默认不设置,默认值为-1
int timeout() default TransactionDefinition.TIMEOUT_DEFAULT; /** * {@code true} if the transaction is read-only. * <p>Defaults to {@code false}. * <p>This just serves as a hint for the actual transaction subsystem; * it will <i>not necessarily</i> cause failure of write access attempts. * A transaction manager which cannot interpret the read-only hint will * <i>not</i> throw an exception when asked for a read-only transaction * but rather silently ignore the hint. * @see org.springframework.transaction.interceptor.TransactionAttribute#isReadOnly() */
  //是否为只读事务,只读事务一般是通过共享锁,读写事务使用排他锁
boolean readOnly() default false; /** * Defines zero (0) or more exception {@link Class classes}, which must be * subclasses of {@link Throwable}, indicating which exception types must cause * a transaction rollback. * <p>By default, a transaction will be rolling back on {@link RuntimeException} * and {@link Error} but not on checked exceptions (business exceptions). See * {@link org.springframework.transaction.interceptor.DefaultTransactionAttribute#rollbackOn(Throwable)} * for a detailed explanation. * <p>This is the preferred way to construct a rollback rule (in contrast to * {@link #rollbackForClassName}), matching the exception class and its subclasses. * <p>Similar to {@link org.springframework.transaction.interceptor.RollbackRuleAttribute#RollbackRuleAttribute(Class clazz)}. * @see #rollbackForClassName * @see org.springframework.transaction.interceptor.DefaultTransactionAttribute#rollbackOn(Throwable) */
  //检查到指定异常后回滚
Class<? extends Throwable>[] rollbackFor() default {}; /** * Defines zero (0) or more exception names (for exceptions which must be a * subclass of {@link Throwable}), indicating which exception types must cause * a transaction rollback. * <p>This can be a substring of a fully qualified class name, with no wildcard * support at present. For example, a value of {@code "ServletException"} would * match {@code javax.servlet.ServletException} and its subclasses. * <p><b>NB:</b> Consider carefully how specific the pattern is and whether * to include package information (which isn't mandatory). For example, * {@code "Exception"} will match nearly anything and will probably hide other * rules. {@code "java.lang.Exception"} would be correct if {@code "Exception"} * were meant to define a rule for all checked exceptions. With more unusual * {@link Exception} names such as {@code "BaseBusinessException"} there is no * need to use a FQN. * <p>Similar to {@link org.springframework.transaction.interceptor.RollbackRuleAttribute#RollbackRuleAttribute(String exceptionName)}. * @see #rollbackFor * @see org.springframework.transaction.interceptor.DefaultTransactionAttribute#rollbackOn(Throwable) */
  //上一个方法中异常类的名字
String[] rollbackForClassName() default {}; /** * Defines zero (0) or more exception {@link Class Classes}, which must be * subclasses of {@link Throwable}, indicating which exception types must * <b>not</b> cause a transaction rollback. * <p>This is the preferred way to construct a rollback rule (in contrast * to {@link #noRollbackForClassName}), matching the exception class and * its subclasses. * <p>Similar to {@link org.springframework.transaction.interceptor.NoRollbackRuleAttribute#NoRollbackRuleAttribute(Class clazz)}. * @see #noRollbackForClassName * @see org.springframework.transaction.interceptor.DefaultTransactionAttribute#rollbackOn(Throwable) */
  //如果你在声明异常类中发生的异常,不回滚
Class<? extends Throwable>[] noRollbackFor() default {}; /** * Defines zero (0) or more exception names (for exceptions which must be a * subclass of {@link Throwable}) indicating which exception types must <b>not</b> * cause a transaction rollback. * <p>See the description of {@link #rollbackForClassName} for further * information on how the specified names are treated. * <p>Similar to {@link org.springframework.transaction.interceptor.NoRollbackRuleAttribute#NoRollbackRuleAttribute(String exceptionName)}. * @see #noRollbackFor * @see org.springframework.transaction.interceptor.DefaultTransactionAttribute#rollbackOn(Throwable) */
   //上一个异常类中的类名
String[] noRollbackForClassName() default {};}

 

上述主要为Spring中Transactional中的方法使用介绍,现在具体来介绍一下错误读的问题是怎么解决的。

此处要引入三个概念,分别是记录锁,临建锁,间隙锁

 

 

记录锁:记录锁就是为某行记录加锁,列必须为唯一索引列或主键列,否则加的锁就会变成临键锁,
查询语句必须为精准匹配 = ,不能为 >、<、like等,否则也会退化成临键锁。   

 

 

 

 

间隙锁:间隙锁基于非唯一索引,它锁定一段范围内的索引记录。比如查询字段区间为4-7,即1-5内的记录行都会被锁住,5、6 的数据行的会被阻塞,但是 4 和 7 两条记录行并不会被锁住。

 

 

临建锁:临键锁可以理解为一种特殊的间隙锁,上面说过了通过临建锁可以解决幻读的问题。 每个数据行上的非唯一索引列上都会存在一把临键锁,当某个事务持有该数据行的临键锁时,会锁住一段左开右闭区间的数据。

 









原文转载:http://www.shaoqun.com/a/520015.html

跨境电商:https://www.ikjzd.com/

斑马物联网:https://www.ikjzd.com/w/1316

auditor:https://www.ikjzd.com/w/2437


一、什么是数据库事务?  数据库事务(transaction)是访问并可能操作各种数据项的一个数据库操作序列,这些操作要么全部执行,要么全部不执行,是一个不可分割的工作单位。事务由事务开始与事务结束之间执行的全部数据库操作组成。  简言之就是,更新、新增、删除的sql要么一起成功,要么一起失败(回滚)。二、使用数据库的事务可能出现什么问题?  可能会出现脏读、幻读、不可重复读的问题。  1.什么是
c88是什么:c88是什么
国际标准书号:国际标准书号
预计明年推出:eBay版FBA已完成β阶段测试!:预计明年推出:eBay版FBA已完成β阶段测试!
亚马逊防止跟卖的几种办法:亚马逊防止跟卖的几种办法
反面教材:中国式运营是怎么快速拿到Bestseller的?:反面教材:中国式运营是怎么快速拿到Bestseller的?

No comments:

Post a Comment