Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

MySQL master-slave replication specifies how different database tables implement synchronization parameters.

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces MySQL master-slave replication to specify different database tables how to achieve synchronization parameters, the contents of the article are carefully selected and edited by the author, with a certain pertinence, for everyone's reference significance is still relatively great, the following with the author to understand the MySQL master-slave replication to specify different database tables how to achieve synchronization parameters.

Reduce the amount of binlog data in replication by the following parameters

Master side:

-- binlog-do-db binary logging database (multiple databases are separated by commas)

-- ignore databases in binlog-ignore-db binary logs (multiple databases are separated by commas)

The following is an example of a method in which the mysql master and slave ignores the authorization table:

In master:

Binlog-do-db=YYY requires synchronized databases. Not adding this line means synchronizing all

Binlog-ignore-db = mysql this is not recording binlog to achieve the slave library out of sync with the mysql library to ensure their respective permissions

Binlog-ignore-db = performance_schema

Binlog-ignore-db = information_schema

Slave end

-- replication-do-db sets the database to be replicated (multiple databases are separated by commas)

-- replication-ignore-db sets the replication databases to be ignored (multiple databases are separated by commas)

-- replication-do-table sets the table to be copied

-- replication-ignore-table sets replication tables to be ignored

-- replication-wild-do-table has the same function as replication-do-table, but can use wildcards

-- replication-wild-ignore-table has the same function as replication-ignore-table, but wildcards can be added

After reading the above about MySQL master-slave replication how to specify different database tables to achieve synchronization parameters, many readers must have some understanding, if you need to get more industry knowledge and information, you can continue to follow our industry information column.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report