mysql filtered replicationTwo ideas:
Therefore, try not to use master-slave filtering replication, and only use it on the slave database, because the integrity of the binlog should be guaranteed as much as possible. Implemented on the main databaseTo ensure the integrity of the binary log on the Master side, binary log filtering is not used. Main library configuration parameters: #Add binlog-do-db=db_name in the configuration file #Define a whitelist and only record operations related to the specified database in the binary log. If the main database crashes, only the contents of the specified database will be restored. This is not recommended on the main server, as it will result in incomplete logs. binlog-ignore-db=db_name #Define a blacklist. Write operations on the database defined as ignore will not be recorded in the binary log. Implemented from the libraryYou can download the configuration file REPLICATE_DO_DB = (db_list) #Filter which libraries to copyREPLICATE_IGNORE_DB = (db_list) #Which libraries not to copyREPLICATE_DO_TABLE = (tbl_list) #Filter tableREPLICATE_IGNORE_TABLE = (tbl_list) #Ignore filtered tableREPLICATE_WILD_DO_TABLE = (wild_tbl_list) #Filter table according to regular matchREPLICATE_WILD_IGNORE_TABLE = (wild_tbl_list) #Ignore filtering these tables according to regular matchREPLICATE_REWRITE_DB = (db_pair_list) #Rewrite the statements in db1 of the source database to db2 of the slave database CHANGE REPLICATION FILTER REPLICATE_REWRITE_DB = ((db1, db2)); grammar: Official website syntax reference: https://dev.mysql.com/doc/refman/5.7/en/change-replication-filter.html CHANGE REPLICATION FILTER filter[, filter][, ...] filter: { REPLICATE_DO_DB = (db_list) | REPLICATE_IGNORE_DB = (db_list) | REPLICATE_DO_TABLE = (tbl_list) | REPLICATE_IGNORE_TABLE = (tbl_list) | REPLICATE_WILD_DO_TABLE = (wild_tbl_list) | REPLICATE_WILD_IGNORE_TABLE = (wild_tbl_list) | REPLICATE_REWRITE_DB = (db_pair_list) } # Implement filtered replication from the library stop slave sql_thread; change replication filter replicate_do_db=(db); start slave sql_thread; #Cancel filtered replication stop slave sql_thread; change replication filter replicate_do_db=(); start slave sql_thread; Some questionsThe master database deletes a table, but the slave database does not have this table, causing the slave database sql thread to close. Or the master and slave are normal, but the slave accidentally deletes a table, and the master deletes the table later. The slave will then delete the non-existent table, report an error, and cause the SQL thread to exit. Solution: Skip this step Solution: Skip the erroneous operation step of the slave sql thread stop slave sql_thread; #Find Executed_Gtid_Set and execute to 19 set gtid_next='94fc1fbe-b7a0-11eb-b0a0-000c2969aba1:20'; assign gtid to the next transaction begin; commit; set gtid_next=automatic; the system automatically assigns gtid start slave sql_thread; This is the end of this article about the detailed explanation of MySQL filtering and replication ideas. For more relevant MySQL filtering and replication content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: What are the image file formats and how to choose
>>: Solve the problem of managing containers with Docker Compose
When using MySQL, many developers often perform f...
1. --cpu=<value> 1) Specify how much availa...
Recently, I encountered a problem in the process ...
Table of contents 1. Rule 1: Object.Method() 1.1 ...
Table of contents 1. Insert 2. Update 3. Delete 1...
A Textbox with Dropdown allows users to select an...
Restart all stopped Docker containers with one co...
Table of contents 1. First install echarts in the...
If you're collecting information from your us...
Basic Use <!DOCTYPE html> <html lang=&qu...
This article shares with you the installation tut...
This article shares the specific code of JavaScri...
This article uses a jQuery plug-in to create an a...
Table of contents 1. React Basic Usage Notable Fe...
Let's start with a description of the problem...