Preface When we build a MySQL cluster, we naturally need to complete the master-slave synchronization of the database to ensure data consistency. There are many ways of master-slave synchronization, including one master and multiple slaves, chained master-slave, and multiple masters and multiple slaves. You can set them up according to your needs. But as long as you need master-slave synchronization, you must pay attention to the configuration of server-id, otherwise master-slave replication exceptions will occur. In controlling database data replication and log management, there are two important configurations: server-id and server-uuid, which affect binary log file records and global transaction identifiers. server-id configuration When you use a master-slave topology, be sure to specify a unique server-id for all MySQL instances. The default value is 0. When server-id=0, the master will still record binary logs, but will reject all slave connections; the slave will reject connections to other instances. The server-id of the MySQL instance is a global variable and can be viewed directly: mysql> show variables like '%server_id%'; +---------------+-----------+ | Variable_name | Value | +---------------+-----------+ | server_id | 171562767 | +---------------+-----------+ 1 row in set (0.00 sec) We can modify the global variable server-id directly online, but it will not take effect immediately, so remember to restart the service after the modification. After restarting, the system configuration file will be re-read, making the previous modification invalid. Therefore, it is recommended to modify the configuration file and restart the service instead of modifying it online: #my.cnf [mysqld] #replication log-bin=mysql-bin server-id=171562767 sync_binlog=1 binlog-ignore-db=mysql binlog-ignore-db=information_schema Server-id usage The server-id is used to identify the database instance to prevent infinite loops of SQL statements in chained master-slave or multi-master-multi-slave topologies:
Let's use two examples to illustrate why server-id should not be repeated: When the server-id of the primary and standby databases are duplicated Because replicate-same-server-id=0 by default, the slave database will skip all data synchronized with the master database, resulting in inconsistency between master and slave data. When the server-ids of two standby databases are duplicated This will cause the connection between the slave database and the master database to be disconnected from time to time, resulting in a large number of exceptions. According to the design of MySQL, the master and slave databases are connected and synchronized through an event mechanism. When a new connection comes, if the server-id is found to be the same, the master database will disconnect the previous connection and re-register the new connection. When database A is connected to the main database, database B will connect to it, which will disconnect database A. Database A will then reconnect, and this cycle will repeat, resulting in a large amount of abnormal information. Rules for generating server-id Since the server-id cannot be the same, when we have 10 instances, how can we ensure that each one is different? There are several commonly used methods:
All of the above methods are OK, but be careful not to exceed the maximum value 2^32-1, and the value should preferably be >2. The method I use is the last two digits of the IP address + the local MySQL instance number, but if you are using Docker to manage multiple instances, how do you generate this? Can you think about whether there is any elegant solution? server-uuid configuration The MySQL service will automatically create and generate the server-uuid configuration:
shell> cat ~/mysql/data/auto.cnf [auto] server-uuid=fd5d03bc-cfde-11e9-ae59-48d539355108 The auto.cnf configuration style is similar to my.cnf, but this file only contains an auto configuration block and a server-uuid configuration line. It is created automatically, so do not modify its contents. In the master-slave topology, the master and slave can know each other's UUID. Use show slave hosts on the master and show slave status on the slave to view the Master_UUID field. The server-uuid parameter does not replace the server-id parameter. They have different functions. When synchronizing the master and slave instances, if the server-uuid of the master and slave instances are the same, an error will be reported and the system will exit. However, we can avoid the error by setting replicate-same-server-id=1 (not recommended). References
Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: How to implement ansible automated installation and configuration of httpd in Linux system
>>: The whole process of realizing website internationalization using Vite2 and Vue3
Hash Join Hash Join does not require any indexes ...
MySQL creates users and authorizes and revokes us...
First look at the effect diagram: The complete co...
Blank's blog: http://www.planabc.net/ The use...
Preface In the previous article Two data types in...
Table of contents 1. MySQL data backup 1.1, mysql...
The first step is to install TypeScript globally ...
This article shares the specific code of Node.js+...
Introduction When talking about distribution, we ...
Unicode Signature BOM - What is the BOM? BOM is th...
1. How do I remove the blank space of a few pixels...
This question is a discussion among netizens in a...
Table of contents 1. Open the project directory o...
Preface I believe that everyone has had experienc...
1. Please download the Busybox source code online...