mysql的WAL技术是什么_mysql wal_MySQL InnoDB中的WAL协议浅谈[转]

本文详细介绍了数据库系统中内存页修改和磁盘同步的过程。首先,修改发生在内存中的页面,被标记为脏页。接着,修改的操作会在本地微型事务缓冲区生成重做日志。随后,重做日志记录会被写入全局内存的重做日志缓冲区,并最终写入磁盘。确保重做日志先于脏页刷新到磁盘,遵循写前日志(WAL)原则,以保证数据一致性。脏页会在后续的检查点操作中被刷新到磁盘。
摘要由CSDN通过智能技术生成

Any changes to a page is first done to the in-memory copy of the page. The page that is modified in memory and not yet flushed to disk is marked as the dirty page in memory.

An associated redo log is generated in memory, in the local mini transaction (mtr) buffer. This will then be transferred to the global in-memory redo log buffer.

The redo log record is written from the redo log buffer in memory to the redo log file on disk. This is subsequently flushed. These two steps are considered separate - writing to the redo log file and flushing the redo log file to the disk. This is to account for the file buffering done by the operating system.

The dirty page is flushed from memory to disk at some later point of time as part of the checkpointing operation.

The order of these steps are important. The redo log record of a change must be flushed to disk before flushing the corresponding dirty page to the disk. This is the concept of write-ahead logging (WAL).

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值