sync_binlo主从复制
【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.
推荐阅读
- Docker应用:容器间通信与Mariadb数据库主从复制
- MYSQL主从同步的实现
- CocoaAsyncSocket|CocoaAsyncSocket (GCDAsyncSocket)适配IPv6
- AsyncTask的个人小结
- 一文弄懂MySQL中redo|一文弄懂MySQL中redo log与binlog的区别
- 数据库一主多从带来的线上问题
- AsyncTaske简单理解
- js|js async和await的用法
- Java显式锁——相对于synchronized
- Zookeeper的sync操作是什么()