Undo log in MySQL

Undo log in MySQL

Concept introduction:

We know that the redo log in MySQL records the behavior of transactions. When the server crashes, data can be restored by redoing transactions. However, sometimes transactions need to be rolled back, that is, we need to know what a transaction looked like before it became the current situation. In this case, the undo log comes in handy. In other words, the undo log is used to restore the data to the state before the modification. Therefore, when modifying the database, we need to know that redo logs and undo logs will be generated in this process.

Storage location:

We also know that redo logs are generally placed in redo log files, commonly known as ib_log, while undo logs are stored in a "segment" inside the database. We talked about this concept in the article on August 21. Those who have forgotten can go back and take a look. The undo log segment is located in the shared tablespace.

Rollback operation:

Now, we already know the concept of undo, which is actually an area in the shared tablespace. Its main function is to restore the transaction to the state before the modification is performed. However, the recovery situations are generally divided into two types, one is logical recovery and the other is physical recovery. What needs to be emphasized here is that undo recovery is logical recovery, that is, if you insert 1 million pieces of data, causing InnoDB to allocate a new data page to store this data, then when the transaction is rolled back, the function of undo is not to recycle the data page, but to change these insert operations into delete operations to perform a rollback. During this process, the size of the shared tablespace does not change. In addition, the undo log converts delete operations into insert operations and update operations into reverse update operations.

Deletion method:

Another point to note is that the process of writing undo logs in the transaction shared tablespace also requires writing redo logs. Once a transaction is committed, it means that the persistence of the transaction takes effect, and the undo log is no longer needed. However, InnoDB does not delete the undo log directly, but puts it in a linked list of undo logs. When to delete it depends on the MySQL purge thread. This is done to avoid other transactions from needing to use the undo log to obtain the previous version of this record.

Space Allocation:

In actual operation, a database instance may perform many transactions. If we allocate a separate log data page to store undo for each transaction, it will waste storage space. Let's do a simple calculation. Assuming that the TPS of an application is 1000, an undo page is allocated for each transaction. The size of a data page is 16kb, and 60*1000 data pages will be generated in 1 minute. Then the space required for one minute is about 960M of disk space, which is obviously unreasonable. Therefore, in innodb, undo pages can be reused. The specific method is that when the transaction is committed, the undo page is put into the linked list, and then it is determined whether the used space of the undo page is less than 75%. If so, the undo page can be reused, and the subsequent undo log can be appended to the back of the current undo log. Of course, we can use show engine innodb status to view the number of undo logs in the linked list, but we will not demonstrate this here.

The above is the detailed content of the undo log in MySQL. For more information about MySQL undo log, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • MySQL series: redo log, undo log and binlog detailed explanation
  • Detailed explanation of MySQL redo log (redo log) and rollback log (undo logo)
  • Summary of 7 types of logs in MySQL
  • MySQL uses binlog logs to implement data recovery
  • Analysis and solution of a MySQL slow log monitoring false alarm problem
  • The role and opening of MySQL slow query log
  • Enabling and configuring MySQL slow query log
  • Detailed explanation of the binlog log analysis tool for monitoring MySQL: Canal
  • Analysis of MySQL Aborted connection warning log
  • How to shrink the log file in MYSQL SERVER
  • Summary of MySQL Undo Log and Redo Log

<<:  Element Table table component multi-field (multi-column) sorting method

>>:  Summary of the pitfalls you may not have encountered in WeChat applet development

Recommend

Linux C log output code template sample code

Preface This article mainly introduces the releva...

A brief discussion on the CSS overflow mechanism

Why do you need to learn CSS overflow mechanism i...

mysql 5.7.18 winx64 free installation configuration method

1. Download 2. Decompression 3. Add the path envi...

How to write configuration files and use MyBatis simply

How to write configuration files and use MyBatis ...

js implements shopping cart addition and subtraction and price calculation

This article example shares the specific code of ...

How to set up Spring Boot using Docker layered packaging

The Spring Boot project uses docker containers, j...

Basic implementation method of cross-component binding using v-model in Vue

Hello everyone, today we will talk about how to u...

How to use CSS counters to beautify ordered lists of numbers

In web design, it is very important to use an org...

Implementation steps for enabling docker remote service link on cloud centos

Here we introduce the centos server with docker i...

How to use vue filter

Table of contents Overview Defining filters Use o...

Bootstrap 3.0 learning notes button style

This article mainly explains the style of buttons...

Implementation of one-click TLS encryption for docker remote api

Table of contents 1. Change the 2375 port of Dock...

How to use Xtrabackup to back up and restore MySQL

Table of contents 1. Backup 1.1 Fully prepared 1....

Detailed discussion of several methods for deduplicating JavaScript arrays

Table of contents 1. Set Deduplication 2. Double ...