zoukankan      html  css  js  c++  java
  • [MySQL复制异常]'Cannot execute statement: impossible to write to binary log since statement is in row format and BINLOG_FORMAT = STATEMENT.'

    MySQL复制错误]Last_Errno: 1666 Last_Error: Error executing row event: 'Cannot execute statement: imposs

    收到email报警, Last_Error: Error executing row event: 'Cannot execute statement: impossible to write to binary log since statement is in row format and BINLOG_FORMAT = STATEMENT.'

    mysql> show slave status;

    看到貌似是statement模式不足以应付应用,换成mixed试试看吧:

    mysql> STOP SLAVE;
    Query OK, 0 rows affected (0.02 sec)

     mysql>  SET GLOBAL binlog_format=MIXED;
    Query OK, 0 rows affected (0.00 sec)

     mysql> START SLAVE;
    Query OK, 0 rows affected (0.00 sec)

    但是这样只会一次性

    为了永久生效,需要修改my.ini

    # Remove leading

    # to turn on a very important data integrity option: logging

    # changes to the binary log between backups.

    log_bin = E:/mysql56/log_bin/log_bin.log

    #relay_log = E:/mysql56/log_bin/relay_log.log

    #read_only = 1

    # binary logging format - mixed recommended

    binlog_format=mixed

  • 相关阅读:
    JAVA Number类
    ConcurrentHashMap.Segment源码解析
    Java Concurrent包初探
    JAVA枚举类
    构造不可变类及其优点
    Unsafe类初探
    Paxos made simple 翻译尝试
    平行二叉堆和优先队列
    Android OpenCV学习
    Android-Java和HTML5交互-混合开发-优化
  • 原文地址:https://www.cnblogs.com/davidgu/p/3765333.html
Copyright © 2011-2022 走看看