How to distinguish MySQL's innodb_flush_log_at_trx_commit and sync_binlog

How to distinguish MySQL's innodb_flush_log_at_trx_commit and sync_binlog

The two parameters innodb_flush_log_at_trx_commit and sync_binlog are key parameters for controlling MySQL disk write strategy and data security.

show variables like "innodb_flush_log_at_trx_commit";

innodb_flush_log_at_trx_commit:

0: MySQL's main_thread writes the redo log in the storage engine log buffer to the log file every second, and calls the file system's sync operation to refresh the log to disk.

1: Each time a transaction is committed, the redo log in the storage engine log buffer is written to the log file, and the file system's sync operation is called to refresh the log to the disk.

2: Each time a transaction is committed, the redo log in the storage engine log buffer is written to the log file, and the storage engine's main_thread flushes the log to disk every second.

show variables like "sync_binlog";

sync_binlog:

0: The storage engine does not flush binlog to disk, and the operating system's file system controls cache flushing.

1: Each time a transaction is submitted, the storage engine calls the file system's sync operation to refresh the cache. This method is the safest, but has lower performance.

n: When the submitted log group = n, the storage engine calls the file system's sync operation to refresh the cache.

sync_binlog=0 or sync_binlog is greater than 1, the transaction is committed but not yet synchronized to disk. Therefore, in the event of a power failure or operating system crash it is possible that the server has committed some transactions that have not yet been synchronized to the binary log. Therefore it is not possible to perform routine recovery of these transactions, as they will be lost in the binary log.

It is safest when both innodb_flush_log_at_trx_commit and sync_binlog are 1. In the event of a mysqld service crash or a server host crash, the binary log may lose at most one statement or one transaction. However, you cannot have your cake and eat it too. Double 1, 1 will lead to frequent IO operations, so this mode is also the slowest way.

In actual use, it is necessary to consider the business needs for performance and security, and comprehensively consider the settings of the two parameters. The above picture shows the parameters of our online machine.

The above is the details of how to distinguish MySQL's innodb_flush_log_at_trx_commit and sync_binlog. For more information about MySQL's innodb_flush_log_at_trx_commit and sync_binlog, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Summary of MySQL InnoDB architecture
  • A brief introduction to MySQL InnoDB ReplicaSet
  • Detailed explanation of memory management of MySQL InnoDB storage engine
  • MySQL Innodb key features insert buffer
  • Summary of MySQL InnoDB locks
  • Detailed Example of MySQL InnoDB Locking Mechanism
  • In-depth explanation of InnoDB locks in MySQL technology
  • Change the MySQL database engine to InnoDB
  • Briefly describe the MySQL InnoDB storage engine
  • MySQL InnoDB tablespace encryption example detailed explanation
  • MySQL InnoDB transaction lock source code analysis

<<:  Detailed Analysis of the Differences between break and last in Nginx

>>:  HTML hyperlinks explained in detail

Recommend

JavaScript mobile H5 image generation solution explanation

Now there are many WeChat public account operatio...

12 Javascript table controls (DataGrid) are sorted out

When the DataSource property of a DataGrid control...

Vue realizes the card flip effect

This article example shares the specific code of ...

Solution to the problem that VC6.0 cannot be used when installed on WIN10

VC6.0 is indeed too old VC6.0 is a development to...

How to connect to a remote server and transfer files via a jump server in Linux

Recently, I encountered many problems when deploy...

MySQL Series 10 MySQL Transaction Isolation to Implement Concurrency Control

Table of contents 1. Concurrent access control 2....

JS implementation of carousel example

This article shares the specific code of JS to im...

How to install Linux flash

How to install flash in Linux 1. Visit the flash ...

Win10 + Ubuntu 16.04 dual system perfect installation tutorial [detailed]

Be sure to remember to back up your data, it is p...

Analysis of the usage of Xmeter API interface testing tool

XMeter API provides a one-stop online interface t...

What is MIME TYPE? MIME-Types type collection

What is MIME TYPE? 1. First, we need to understand...

Best Practices for Developing Amap Applications with Vue

Table of contents Preface Asynchronous loading Pa...

mysql 8.0.19 win10 quick installation tutorial

This tutorial shares the installation tutorial of...

Detailed explanation of the use of Teleport in Vue3

Table of contents Purpose of Teleport How Telepor...

A brief discussion on the use of React.FC and React.Component

Table of contents 1. React.FC<> 2. class xx...