Published on

MySQL Binlog 基础

Authors
  • avatar
    Name
    Pony Ma
    Twitter

主从同步也是依赖binlog文件进行同步的, 主服务器把数据变更记录存在binlog文件中,再把binlog文件传送到从服务器, 从服务器解析binlog文件,把变更的数据更新到数据库中。

binlog的三种格式

statement

记录的是SQL语句的原文

row

mixed