sync_binlo主从复制

Posted diuxie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sync_binlo主从复制相关的知识,希望对你有一定的参考价值。

sync_binlog

Controls how often the mysql server synchronizes the binary log to disk.

sync_binlog=0: Disables syncwww.diuxie.comhronization of the binary log to disk by the MySQL server. Instead, the MySQL server relies on the operating system to flush the binary log to disk from time to time as it does for any other file. This setting provides the best performance, but in the event of a power failure or operating system crash, it is possible that the server has committed transactions that have not been synchronized to the binary log.

sync_binlog=0 时: 关闭掉使用MySQL server 去同步binary log 到磁盘。 依靠操作系统的方式将binary log 持久化到磁盘。

sync_binlog=1: Enables synchronization of the binary log to disk before transactions are committed. This is the safest setting but can have a negative impact on performance due to the increased number of disk writes. In the event of a power failure or operating system crash, transactions that are missing from the binary log are only in a prpared state. This permits the automatic recovery routine to roll back the transactions, which guarantees that no transaction is lost from the binary log.

sync_binlog=1 时:开启在事务提交前将binary log 同步到磁盘。 此种方式是对于数据库来说是最安全的,但是对数据性能有严重影响,因为增加了磁盘io。 在主机掉电或意外停机的情况下,事务还在prepared 状态。当机器重启后这些未提交的事务会回滚这样就防止丢事务的情况。

sync_binlog=N, where N is a value other than 0 or 1: The binary log is synchronized to disk after N binary log commit groups have been collected. In the event of a power failure or operating system crash, it is possible that the server has committed transactions that have not been flushed to the binary log. This setting can have a negative impact on performance due to the increased number of disk writes. A higher value improves performance, but with an increased risk of data loss.

sync_binlog=N 时: N是不同于0 和1 的值。 此种情况是收集N个提交了的binlog 再将数据持久到磁盘。这样会改善数据库的性能,但是当服务器宕机时这些未持久化到磁盘的事务有丢失的风险

For the greatest possible durability and consistency in a replication setup that uses InnoDB with transactions, use these settings:

sync_binlog=1.

innodb_flush_log_at_trx_commit=1.

对手游数据库持久化和一致性来讲需要将sync_binlog 和innodb_flush_log_at_trx_commit 同时设置为1。

Caution
Many operating systems and some disk hardware fool the flush-to-disk operation. They may tell mysqld that the flush has taken place, even though it has not. In this case, the durability of transactions is not guaranteed even with the recommended settings, and in the worst case, a power outage can corrupt InnoDB data. Using a battery-backed disk cache in the SCSI disk controller or in the disk itself speeds up file flushes, and makes the operation safer. You can also try to disable the caching of disk writes in hardware caches.

以上是关于sync_binlo主从复制的主要内容,如果未能解决你的问题,请参考以下文章

主从复制原理

Linux----------mysql主从复制和基于GTID主从复制

RocketMQ源码-主从同步复制和异步复制

主从复制:主从复制的概述一主一从架构搭建主从复制的原理同步数据一致性问题

MySQL中主从复制不同步?

MySQL主从复制