How to skip errors in mysql master-slave replication

How to skip errors in mysql master-slave replication

1. Traditional binlog master-slave replication, skip error reporting method

mysql> stop slave;
mysql> set global sql_slave_skip_counter = 1;
mysql> start slave;
mysql> show slave status \G

2. GTID master-slave replication, skip error reporting method

mysql> stop slave; #Turn off slave replication first;
mysql> change master to ...omitted... #Configure master-slave replication;
mysql> show slave status\G #View the master-slave status;

Found an error:

mysql> show slave status\G
*************************** 1. row ***************************
        Slave_IO_State: Waiting for master to send event
         Master_Host: 172.19.195.212
         Master_User: master-slave
         Master_Port: 3306
        Connect_Retry: 60
       Master_Log_File:mysql-bin.000021
     Read_Master_Log_Pos: 194
        Relay_Log_File: nginx-003-relay-bin.000048
        Relay_Log_Pos: 454
    Relay_Master_Log_File: mysql-bin.000016
       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: 1007
          Last_Error: Error 'Can't create database 'code'; database exists' on query. Default database: 'code'. Query: 'create database code'
         Skip_Counter: 0
     Exec_Master_Log_Pos: 8769118
       Relay_Log_Space: 3500
       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: 1007
        Last_SQL_Error: Error 'Can't create database 'code'; database exists' on query. Default database: 'code'. Query: 'create database code'
 Replicate_Ignore_Server_Ids: 
       Master_Server_Id: 100
         Master_UUID: fea89052-11ef-11eb-b241-00163e00a190
       Master_Info_File: /usr/local/mysql/data/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: 201022 09:31:29
        Master_SSL_Crl: 
      Master_SSL_Crlpath: 
      Retrieved_Gtid_Set: fea89052-11ef-11eb-b241-00163e00a190:8-5617
      Executed_Gtid_Set: a56c9b04-11f1-11eb-a855-00163e128853:1-11224,
fea89052-11ef-11eb-b241-00163e00a190:1-5614
        Auto_Position: 1
     Replicate_Rewrite_DB: 
         Channel_Name: 
      Master_TLS_Version: 
1 row in set (0.01 sec)

You can see that Slave_SQL_Running is NO, which means that there is a problem with the binary log being retrieved;
You can also see the approximate error in Last_Error; (Due to my previous operations, I can probably tell that it is because there is a SQL statement for creating a code library in the binary log of the master library, and I have already created this library on the slave library, so there should be a conflict;)

Solution:

1. If you are clear about your previous operations, you can delete the library that caused the conflict;
2. Or by skipping the transaction with GTID error

--- Use the Last_SQL_Errno error number to query the specific error transactionmysql> select * from performance_schema.replication_applier_status_by_worker where LAST_ERROR_NUMBER=1007\G
*************************** 1. row ***************************
     CHANNEL_NAME: 
      WORKER_ID: 0
      THREAD_ID: NULL
    SERVICE_STATE: OFF
LAST_SEEN_TRANSACTION: fea89052-11ef-11eb-b241-00163e00a190:5615
  LAST_ERROR_NUMBER: 1007
  LAST_ERROR_MESSAGE: Error 'Can't create database 'code'; database exists' on query. Default database: 'code'. Query: 'create database code'
 LAST_ERROR_TIMESTAMP: 2020-10-22 09:31:29
1 row in set (0.00 sec)

mysql> stop slave;
Query OK, 0 rows affected (0.00 sec)

--- Skip the transaction in which an error is found (the value of LAST_SEEN_TRANSACTION)
mysql> set @@session.gtid_next='fea89052-11ef-11eb-b241-00163e00a190:5615';
Query OK, 0 rows affected (0.00 sec)

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

--- Submit an empty transaction, because after setting gtid_next, the life cycle of gtid begins, and it must be ended by explicitly submitting a transaction;
mysql> commit;
Query OK, 0 rows affected (0.00 sec)

--- Set back to automatic mode;
mysql> set @@session.gtid_next=automatic;
Query OK, 0 rows affected (0.00 sec)

mysql> start slave;
Query OK, 0 rows affected (0.00 sec)

Through the above steps, the transaction with the GTID error is skipped. If there is still an error after starting the slave, continue to skip it according to this step;

If you are experienced, you don't need to query the transaction. You can judge that the transaction with the error is fea89052-11ef-11eb-b241-00163e00a190:5615 through Executed_Gtid_Set. Because when executing the transaction, an error is reported when it reaches fea89052-11ef-11eb-b241-00163e00a190:1-5614, it should be judged that the error occurred in transaction 5615.

The above is the details of how to skip errors in MySQL master-slave replication. For more information about MySQL skipping errors, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to fix duplicate key issues in MySQL master-slave replication
  • Comprehensive analysis of MySql master-slave replication mechanism
  • Detailed explanation of MySQL master-slave replication and read-write separation
  • MYSQL database GTID realizes master-slave replication (super convenient)
  • Implementation principle and configuration of MySql master-slave replication
  • MySQL master-slave replication principle and points to note
  • MySQL master-slave replication configuration process
  • Comprehensive interpretation of MySQL master-slave replication, from principle to installation and configuration
  • Summary of several replication methods for MySQL master-slave replication
  • Common repair methods for MySQL master-slave replication disconnection

<<:  JavaScript to achieve simple drag effect

>>:  Detailed explanation of the principle and implementation process of Nginx configuration https

Recommend

The use and difference between vue3 watch and watchEffect

1.watch listener Introducing watch import { ref, ...

The difference between html form submission action and url jump to actiond

The action of the form is different from the URL j...

Summary of CSS front-end knowledge points (must read)

1. The concept of css: (Cascading Style Sheet) Ad...

Experience in solving tomcat memory overflow problem

Some time ago, I submitted a product version to t...

Use of MySQL truncate table statement

The Truncate table statement is used to delete/tr...

JS implements sliding up and down on the mobile terminal one screen at a time

This article shares with you the specific code of...

How to simulate enumeration with JS

Preface In current JavaScript, there is no concep...

MySQL explain obtains query instruction information principle and example

explain is used to obtain query execution plan in...

Nginx configures the same domain name to support both http and https access

Nginx is configured with the same domain name, wh...

In-depth explanation of special permissions SUID, SGID and SBIT in Linux

Preface For the permissions of files or directori...

Linux configuration SSH password-free login "ssh-keygen" basic usage

Table of contents 1 What is SSH 2 Configure SSH p...

How to use JSX to implement Carousel components (front-end componentization)

Before we use JSX to build a component system, le...

Detailed explanation of the use of shared memory in nginx

In the nginx process model, tasks such as traffic...