The file used to store data in the database is called a data file, and the log file is called a log file. In addition, if each read and write directly accesses the disk, the performance will be very poor, so the database has a cache, the data cache is the data buffer, and the log cache is the log buffer. SQL execution orderWhen we execute an update statement, such as update table set c=c+1 where id = 2, the execution order is as follows:
bin log What isBin log is called archive log or binary log. It belongs to MySQL Server level and is used to record changes in database table structure and table data. It can be simply understood as storing each changed SQL statement, such as insert, delete, update (of course, not only SQL, but also transaction ID, execution time, etc.). When is it producedWhen a transaction is committed, all SQL statements in the transaction are recorded in a certain format to the bin log at one time. What's the useThere are two main functions: master-slave replication and data recovery
When will the disk be dropped?Distinguishing between innodb_flush_log_at_trx_commit and sync_binlog Binary log depends on the sync_binlog parameter
File Logging ModeBin log has three file recording modes: row, statement, and mixed
Advantages: It can clearly record the modification details of each row of data and fully ensure the consistency of master-slave data. Disadvantages: A large number of logs will be generated during batch operations, such as alter table.
Advantages: small amount of log data, reduced disk IO, improved storage and recovery speed Disadvantages: in some cases, master-slave inconsistency may occur, such as when the SQL statement contains functions such as **now()**
redo log What isThe redo log is called the redo log. It is a log at the InnoDB storage engine layer. It records the modification information of the physical page, rather than how a certain row or several rows are modified. When is it producedWhen a transaction starts, the redo log is written. The redo log is not written to disk when the transaction is committed, but is written to disk during the transaction execution. What's the useCan be used to recover data. The redo log is written to disk after the transaction starts, and it is sequential IO, so the writing speed is fast. If the server suddenly loses power, the InnoDB engine will use redo log to restore the database to the time before the power failure to ensure data integrity. When will the disk be dropped? InnoDB first writes the log to the log buffer, then flushes the log from the log buffer to the OS buffer, and finally calls the file system's fsync function to flush the log to the disk. The timing of redo log writing is determined by the parameter
The general value is 2, because even if MySQL crashes, the data is not lost. Only when the entire server crashes will 1 second of data be lost. bin log VS redo logAfter reading the above introduction, I feel that bin log and redo log are very similar. Both record data changes and can be used for recovery. In fact, there are still obvious differences between them.
If the entire database is deleted, can it be restored through redo log? no! Because the redo log focuses on saving the data changes of a transaction, when the data in the memory is flushed to the disk, the data in the redo log actually has no reference value. In addition, the redo log will overwrite historical data, and it is impossible to recover all data through it. undo logDetailed analysis of MySQL transaction logs What isUndo log is called rollback log, which belongs to the InnoDB storage engine layer. It is a logical log that records each line of data. When we change data, an undo log will be generated. It can be considered that when a piece of data is inserted, the undo log will record a corresponding delete log, and vice versa. When is it producedBefore the transaction starts, generate an undo log for the current version What's the useMain function: provide rollback and multi-version concurrency control (MVCC)
The above is the detailed content of the summary of MySQL log related knowledge. For more information about MySQL log, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: React internationalization react-i18next detailed explanation
>>: Implementation method of Nginx+tomcat load balancing cluster
Table of contents Preface: 1. Introduction to Nav...
This article shares the specific code of Vue to i...
Table of contents 1. Offline installation 2. Onli...
Preface The company's developers used the rep...
This article example shares the specific code of ...
I developed a project some time ago. I used the f...
Utilize the browser's non- overflow:auto elem...
Preface The origin is a question 1: If your umask...
8 optimization methods for MySQL database design,...
Modify the group to which a user belongs in Linux...
1. When you open the web page, 503 service unavai...
I would like to share with you the graphic tutori...
Use blockquote for long citations, q for short ci...
Specific method: 1. Open Command Prompt 2. Enter ...
Table of contents Too long to read Component styl...