跳过事务
主库
mysql> create database beijing;
Query OK, 1 row affected (0.03 sec)
mysql> use beijing 
Database changed
mysql> create table t (x int);
Query OK, 0 rows affected (0.06 sec)
mysql> insert into t values(2);
进入从库
删除一条数据
mysql> delete from t where x=1;
Query OK, 1 row affected (0.00 sec)
进入主库
删除一条数据
进入从库,查看状态
mysql> show slave status \G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 127.0.0.1
                  Master_User: replic
                  Master_Port: 55291
                Connect_Retry: 10
              Master_Log_File: master-bin.000007
          Read_Master_Log_Pos: 44780505
               Relay_Log_File: slave1-relay.000004
                Relay_Log_Pos: 44776707
        Relay_Master_Log_File: master-bin.000007
             Slave_IO_Running: Yes
            Slave_SQL_Running: No
              Replicate_Do_DB: 
          Replicate_Ignore_DB: 
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 1032
                   Last_Error: Coordinator stopped because there were error(s) in the worker(s). The most recent failure being: Worker 1 failed executing transaction '80f04883-a079-11e8-b8ec-5254002dc57d:314323' at master log master-bin.000007, end_log_pos 44776774. See error log and/or performance_schema.replication_applier_status_by_worker table for more details about this failure or others, if any.
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 44776492
              Relay_Log_Space: 44781012
              Until_Condition: None
               Until_Log_File: 
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File: 
           Master_SSL_CA_Path: 
              Master_SSL_Cert: 
            Master_SSL_Cipher: 
               Master_SSL_Key: 
        Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 0
                Last_IO_Error: 
               Last_SQL_Errno: 1032
               Last_SQL_Error: Coordinator stopped because there were error(s) in the worker(s). The most recent failure being: Worker 1 failed executing transaction '80f04883-a079-11e8-b8ec-5254002dc57d:314323' at master log master-bin.000007, end_log_pos 44776774. See error log and/or performance_schema.replication_applier_status_by_worker table for more details about this failure or others, if any.
  Replicate_Ignore_Server_Ids: 
             Master_Server_Id: 5529101
                  Master_UUID: 80f04883-a079-11e8-b8ec-5254002dc57d
             Master_Info_File: mysql.slave_master_info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: 
           Master_Retry_Count: 86400
                  Master_Bind: 
      Last_IO_Error_Timestamp: 
     Last_SQL_Error_Timestamp: 180817 11:48:43
               Master_SSL_Crl: 
           Master_SSL_Crlpath: 
           Retrieved_Gtid_Set: 80f04883-a079-11e8-b8ec-5254002dc57d:154642-314335
            Executed_Gtid_Set: 416781ef-a129-11e8-a2c9-5254002dc57d:1-222,
80f04883-a079-11e8-b8ec-5254002dc57d:154642-314322
                Auto_Position: 0
         Replicate_Rewrite_DB: 
                 Channel_Name: 
           Master_TLS_Version: 
1 row in set (0.00 sec)发现sql_thread断开连接
Slave_SQL_Running: Nomysql> stop slave sql_thread;
Query OK, 0 rows affected, 1 warning (0.00 sec)mysql> set gtid_next='80f04883-a079-11e8-b8ec-5254002dc57d:314323';
Query OK, 0 rows affected (0.00 sec)mysql> begin;commit;
Query OK, 0 rows affected (0.00 sec)Query OK, 0 rows affected (0.01 sec)
mysql> set session gtid_next=automatic;
Query OK, 0 rows affected (0.00 sec)mysql> start slave sql_thread;
Query OK, 0 rows affected (0.03 sec)恢复