Undo LogBefore a database transaction begins, the records to be modified are stored in the Undo log. When the transaction is rolled back or the database crashes, the Undo log can be used to undo the impact of the uncommitted transaction on the database. Undo Log Generation and Destruction Undo Log is generated before the transaction starts. When the transaction is committed, the undo log is not deleted immediately. InnoDB puts the undo log corresponding to the transaction into the deletion list, which is then recycled by the background purge thread. Undo Log StorageUndo log is managed and recorded in segments. The InnoDB data file contains a rollback segment, which contains 1024 undo log segments. Undo log storage can be controlled by the following set of parameters. show variables like '%innodb_undo%'; Undo Log Function Implementing transaction atomicityUndo Log is a product that was created to achieve the atomicity of transactions. During transaction processing, if an error occurs or the user executes a ROLLBACK statement, MySQL can use the backup in the Undo Log to restore the data to the state before the transaction started. Implementing Multi-Version Concurrency Control (MVCC)Undo Log is used to implement multi-version concurrency control in the MySQL InnoDB storage engine. Before a transaction is committed, the Undo Log saves the previous version of the data. The data in the Undo Log can be used as an old version snapshot of the data for snapshot reading by other concurrent transactions.
Redo LogRefers to any data modified in a transaction. The location where the latest data backup is stored (Redo Log) is called the redo log. Redo Log Generation and Release As transaction operations are executed, Redo Logs are generated. When the transaction is committed, the generated Redo Logs are written to the Log Buffer, but not immediately written to the disk file when the transaction is committed. How Redo Log worksRedo Log is a product that was created to achieve transaction persistence. To prevent the situation where there are dirty pages that have not been written to the table's ibd file at the time of a failure, redo the data based on the Redo Log when the MySQL service is restarted, thereby achieving the feature of persisting the transaction data that has not been written to disk. Redo Log Writing MechanismThe contents of the Redo Log file are written to the file in a sequential loop. When it is full, it goes back to the first file and overwrites it. write pos is the position of the current record. It moves backwards while writing. After writing to the end of the last file, it returns to the beginning of file 0. Redo Log related configuration parametersEach InnoDB storage engine has at least one redo log file group, and each file group has at least two redo log files, the default being ib_logfile0 and ib_logfile1. You can control Redo Log storage through the following set of parameters show variables like '%innodb_log%'; The strategy for persisting Redo Buffer to Redo Log can be set through Innodb_flush_log_at_trx_commit
It is generally recommended to select a value of 2, because if MySQL crashes, there is no data loss, and only if the entire server crashes will 1 second of transaction submission data be lost. The above is the detailed summary of MySQL Undo Log and Redo Log. For more information about MySQL Undo Log and Redo Log, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: DOCTYPE Document Type Declaration (Must-Read for Web Page Lovers)
>>: Docker uses root to enter the container
Table of contents 1. Install axios 2. Use of axio...
Table of contents 1. Spark vs. Hadoop 1.1 Disadva...
1. Understand the WEB Web pages are mainly compos...
When displaying long data in HTML, you can cut off...
It has been three or four months since I joined Wo...
background I am learning nodejs recently, and I r...
Open DREAMWEAVER and create a new HTML. . Propert...
Deploy redis in docker First install Docker in Li...
This article shares the specific code of using ca...
<br />With the increase of bandwidth, there ...
Table of contents Preface 1. cat command: 2. more...
This article shares the specific code for JavaScr...
1. MySQL's own stress testing tool Mysqlslap ...
Preface I always thought that UTF-8 was a univers...
In daily work, we may encounter a layout like thi...