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; Solution: 1. If you are clear about your previous operations, you can delete the library that caused the conflict; --- 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;
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:
|
<<: JavaScript to achieve simple drag effect
>>: Detailed explanation of the principle and implementation process of Nginx configuration https
1.watch listener Introducing watch import { ref, ...
Table of contents What is a partition table Parti...
The action of the form is different from the URL j...
1. The concept of css: (Cascading Style Sheet) Ad...
Some time ago, I submitted a product version to t...
The Truncate table statement is used to delete/tr...
This article shares with you the specific code of...
Preface In current JavaScript, there is no concep...
explain is used to obtain query execution plan in...
Nginx is configured with the same domain name, wh...
Preface For the permissions of files or directori...
Table of contents 1 What is SSH 2 Configure SSH p...
Preface When developing a project, I encountered ...
Before we use JSX to build a component system, le...
In the nginx process model, tasks such as traffic...