《MySQL运维内参》节选(2)
回滚段的管理,也是有一个入口位置用来存储回滚段的管理信息的,在InnoDB中,是用第6个页面(5号)来管理的,这个页面是专门用来存储事务相关的信息的,我们先看看其页面格式: /** Transaction system header */ /*————————————————————- @{ */ #define TRX_SYS_TRX_ID_STORE? ? 0 ? /*!< the maximum trx id or trx ? ? ? ? ? ? ? ? ? ? number modulo ? ? ? ? ? ? ? ? ? ? TRX_SYS_TRX_ID_UPDATE_MARGIN ? ? ? ? ? ? ? ? ? ? written to a file page by any ? ? ? ? ? ? ? ? ? ? transaction; the assignment of ? ? ? ? ? ? ? ? ? ? transaction ids continues from ? ? ? ? ? ? ? ? ? ? this number rounded up by ? ? ? ? ? ? ? ? ? ? TRX_SYS_TRX_ID_UPDATE_MARGIN ? ? ? ? ? ? ? ? ? ? plus ? ? ? ? ? ? ? ? ? ? TRX_SYS_TRX_ID_UPDATE_MARGIN ? ? ? ? ? ? ? ? ? ? when the database is ? ? ? ? ? ? ? ? ? ? started */ #define TRX_SYS_FSEG_HEADER 8 ? /*!< segment header for the ? ? ? ? ? ? ? ? ? ? tablespace segment the trx ? ? ? ? ? ? ? ? ? ? system is created into */ #define TRX_SYS_RSEGS ? ? ? (8 + FSEG_HEADER_SIZE) ? ? ? ? ? ? ? ? ? ? /*!< the start of the array of ? ? ? ? ? ? ? ? ? ? rollback segment specification ? ? ? ? ? ? ? ? ? ? slots */ 上面定义的是第6号页面中存储的信息及其对应的位置,每一项的详细意义如下:
而针对每一个回滚段,即上面数组中的一个元素,也有其自己的存储格式,代码中的宏定义如下: #define TRX_RSEG_MAX_SIZE ? 0 ? /* Maximum allowed size for rollback ? ? ? ? ? ? ? ? ? ? segment in pages */ #define TRX_RSEG_HISTORY_SIZE ? 4 ? /* Number of file pages occupied ? ? ? ? ? ? ? ? ? ? by the logs in the history list */ #define TRX_RSEG_HISTORY? ? 8 ? /* The update undo logs for committed ? ? ? ? ? ? ? ? ? ? transactions */ #define TRX_RSEG_FSEG_HEADER? ? (8 + FLST_BASE_NODE_SIZE) ? ? ? ? ? ? ? ? ? ? /* Header for the file segment where ? ? ? ? ? ? ? ? ? ? this page is placed */ #define TRX_RSEG_UNDO_SLOTS (8 + FLST_BASE_NODE_SIZE + FSEG_HEADER_SIZE) ? ? ? ? ? ? ? ? ? ? /* Undo log segment slots */ 上面这些信息的存储,是从页面偏移38的位置开始的,在这个位置之前,存储的是文件管理的信息(讲参考索引管理相关章节),从38开始,存储了上面5个信息,它们的意义分别如下:
这5个信息,存储了一个回滚段的信息,最后一个位置的数组,就是用来真正存储回滚段的位置,我们后面会讲到这128*1024个槽是如何使用的. 根据上面的讲述,我们现在已经知道所有回滚段的存储架构了,如下图所示: 现在就可以知道,InnoDB中支持的回滚段总共有128*1024=131072个,TRX_RSEG_UNDO_SLOTS数组的每个元素指向一个页面,这个页面对应一个段,页面号就是段首页的页面号. 在每一个事务开始的时候,都会分配一个rseg,就是从长度为128的数组中,根据最近使用的情况,找到一个临近位置的rseg,在这个事务的生命周期内,被分配的rseg就会被这个事务所使用. 在事务执行过程中,会产生两种回滚日志,一种是INSERT的UNDO记录,一种是UPDATE的UNDO记录,可能有人会问DELETE哪去了?其实是包含在UPDATE的回滚记录中的,因为InnoDB把UNDO分为两类,一类就是新增,也就是INSERT,一类就是修改,就是UPDATE,分类的依据就是事务提交后要不要做PURGE操作,因为INSERT是不需要PURGE的,只要事务提交了,那这个回滚记录就可以丢掉了,而对于更新和删除操作而言,如果事务提交了,还需要为MVCC服务,那就需要将这些日志放到History List中去,等待去做PURGE,以及MVCC的多版本查询等,所以分为两类. 所以,一个事务被分配了一个rseg之后,通常情况下,如果一个事务中既有插入,又有更新(或删除),那这个事务就会对应两个UNDO段,即在一个rseg的1024个槽中,要使用两个槽来存储这个事务的回滚段,一个是插入段,一个是更新段. 在事务要存储回滚记录的时候,事务就要从1024个槽中,根据相应的更新类型(插入或者更新)找到空闲的槽来作为自己的UNDO段.如果已经申请过相同类型的UNDO段,就直接使用,否则就需要新创建一个段,并将段首页号写入到这个rseg的长度为1024的数组的对应位置(空闲位置)中去,这样就将具体的回滚段与整个架构联系起来了. 如果在1024个槽中找不到空闲的位置,那这个事务就会被回滚掉,报出错误为:“Too many active concurrent transactions”,错误号为1637的异常.当然这种情况一般不会见到,如果能把这个用完,估计数据库已经根本动不了了. 上面讲述了整个回滚段存储架构及与事务的相关性,具体到一个事务所使用的某个回滚段的管理,就存储在了回滚段首页中,管理信息包括三部分,分别是Undo page header、Undo segment header及Undo log header.下面分别介绍: Undo page header: /** Transaction undo log page header offsets */ #define TRX_UNDO_PAGE_TYPE? 0 ? /*!< TRX_UNDO_INSERT or ? ? ? ? ? ? ? ? ? ? TRX_UNDO_UPDATE */ #define TRX_UNDO_PAGE_START 2 ? /*!< Byte offset where the undo log ? ? ? ? ? ? ? ? ? ? records for the LATEST transaction ? ? ? ? ? ? ? ? ? ? start on this page (remember that ? ? ? ? ? ? ? ? ? ? in an update undo log,the first page ? ? ? ? ? ? ? ? ? ? can contain several undo logs) */ #define TRX_UNDO_PAGE_FREE? 4 ? /*!< On each page of the undo log this ? ? ? ? ? ? ? ? ? ? field contains the byte offset of the ? ? ? ? ? ? ? ? ? ? first free byte on the page */ #define TRX_UNDO_PAGE_NODE? 6 ? /*!< The file list node in the chain ? ? ? ? ? ? ? ? ? ? of undo log pages */
Undo segment header: /** Undo log segment header */ #define TRX_UNDO_STATE? ? ? 0 ? /*!< TRX_UNDO_ACTIVE,… */ #define TRX_UNDO_LAST_LOG ? 2 ? /*!< Offset of the last undo log header ? ? ? ? ? ? ? ? ? ? on the segment header page,0 if ? ? ? ? ? ? ? ? ? ? none */ #define TRX_UNDO_FSEG_HEADER? ? 4 ? /*!< Header for the file segment which ? ? ? ? ? ? ? ? ? ? the undo log segment occupies */ #define TRX_UNDO_PAGE_LIST? (4 + FSEG_HEADER_SIZE) ? ? ? ? ? ? ? ? ? ? /*!< Base node for the list of pages in ? ? ? ? ? ? ? ? ? ? the undo log segment; defined only on ? ? ? ? ? ? ? ? ? ? the undo log segment’s first page */
Undo log header: /** The undo log header. There can be several undo log headers on the first page of an update undo log segment. */ #define TRX_UNDO_TRX_ID ? ? 0 ? /*!< Transaction id */ #define TRX_UNDO_TRX_NO ? ? 8 ? /*!< Transaction number of the ? ? ? ? ? ? ? ? ? ? transaction; defined only if the log ? ? ? ? ? ? ? ? ? ? is in a history list */ #define TRX_UNDO_DEL_MARKS? 16? /*!< Defined only in an update undo ? ? ? ? ? ? ? ? ? ? log: TRUE if the transaction may have ? ? ? ? ? ? ? ? ? ? done delete markings of records,and ? ? ? ? ? ? ? ? ? ? thus purge is necessary */ #define TRX_UNDO_LOG_START? 18? /*!< Offset of the first undo log record ? ? ? ? ? ? ? ? ? ? of this log on the header page; purge ? ? ? ? ? ? ? ? ? ? may remove undo log record from the ? ? ? ? ? ? ? ? ? ? log start,and therefore this is not ? ? ? ? ? ? ? ? ? ? necessarily the same as this log ? ? ? ? ? ? ? ? ? ? header end offset */ #define TRX_UNDO_XID_EXISTS 20? /*!< TRUE if undo log header includes ? ? ? ? ? ? ? ? ? ? X/Open XA transaction identification ? ? ? ? ? ? ? ? ? ? XID */ #define TRX_UNDO_DICT_TRANS 21? /*!< TRUE if the transaction is a table ? ? ? ? ? ? ? ? ? ? create,index create,or drop ? ? ? ? ? ? ? ? ? ? transaction: in recovery ? ? ? ? ? ? ? ? ? ? the transaction cannot be rolled back ? ? ? ? ? ? ? ? ? ? in the usual way: a ‘rollback’ rather ? ? ? ? ? ? ? ? ? ? means dropping the created or dropped ? ? ? ? ? ? ? ? ? ? table,if it still exists */ #define TRX_UNDO_TABLE_ID ? 22? /*!< Id of the table if the preceding ? ? ? ? ? ? ? ? ? ? field is TRUE */ #define TRX_UNDO_NEXT_LOG ? 30? /*!< Offset of the next undo log header ? ? ? ? ? ? ? ? ? ? on this page,0 if none */ #define TRX_UNDO_PREV_LOG ? 32? /*!< Offset of the previous undo log ? ? ? ? ? ? ? ? ? ? header on this page,0 if none */ #define TRX_UNDO_HISTORY_NODE ? 34? /*!< If the log is put to the history ? ? ? ? ? ? ? ? ? ? list,the file list node is here */ 这是一个针对UNDO日志的头信息,一个事务写入一次UNDO日志就会创建一个UNDO日志单元,都会对应一个这样的UNDO日志头信息,用来管理这个日志信息的状态,存储一些相关的信息以备恢复时使用,多个UNDO日志之间,通过双向链表连接起来(通过我们即将介绍的TRX_UNDO_NEXT_LOG及TRX_UNDO_PREV_LOG来管理).
到现在为止,关于具体一个UNDO段中每个页面及页面内容是如何管理的已经清楚了,当一个事务需要写入UNDO日志时,就可以直接从对应的UNDO段中找到一个页面及对应的追加日志的偏移位置,然后将对应的UNDO日志写入即可. (还是昨天那个球,线下讨论了关于会源码的作用,有很多人认为,一提到某人会源码,就觉得一般是用来装一下的,并且实际上没有几家公司强大到放心地让你写源码去,所以觉得这不是一个名副其实的技能.我认为实则不然,会源码,99%的机会不是用来写源码的,而是阅读其实际方法及原理,尽可能的做到知MySQL,或者在出现问题之后,是一个很好的用来解决问题的方法,要知道,我不只一次碰到手册上面所述内容是错误的,并且有很多问题网上也是没有的,那可想而知,如果你会阅读源码了,这样的问题可以立刻迎刃而解) 篇外续日志这篇,以这样的角度及思维模式来讲述真的是没有见过的,并且到今天已经是连载第七篇, 可以很确定的告诉大家,还有几篇明天继续发. (编辑:ASP站长网) |