3.单主模式和多主模式

1. 单主模式和多主模式的区

1.1 部署方式

两者部署方式基本相同,多主模式需额外设置以下两个参数:

bash 复制代码
group_replication_single_primary_mode = OFF
group_replication_enforce_update_everywhere_checks = ON

1.2 read_only

  • 对于单主模式,Group Replication 会自动将 Secondary 节点的 super_read_only 和 read_only 设置为 ON。

1.3 自增主键

在单主模式下,auto_increment_offset 和 auto_increment_increment 默认为 1。

多主模式下,auto_increment_offset 和 auto_increment_increment 则分别取⾃ server_id 和

group_replication_auto_increment_increment。

1.4 Group Replication 的限制

很多限制实际上是针对多主模式的。

2. 单主模式和多主模式的在线切换

在组复制中,单主模式和多主模式不能混合部署。

如果配置不兼容,会出现如下错误:

ERROR MY-011529 Rep1 Plugin group_replication reported: 'The member configuration is not compatible with the group configuration. Variables such as

group_replication_single_primary_mode or

group_replication_enforce_update_everywhere_checks must have the same value on every server in the group. (member configuration option:

group_replication_single_primary_mode, group configuration option:

group_replication_enforce_update_everywhere_checks).'

在 MySQL 8.0.13 之前,不支持在线调整集群模式。如果要调整,只能重启整个组复制。

从 MySQL 8.0.13 开始,支持在线调整集群模式。

sql 复制代码
-- 单主模式切换为多主模式
SELECT group_replication_switch_to_multi_primary_mode();

-- 多主模式切换为单主模式
SELECT group_replication_switch_to_single_primary_mode(member_uuid);

-- 切换单主模式下的 Primary 节点
SELECT group_replication_set_as_primary(member_uuid);
相关推荐
布莱克60511 小时前
理解 MySQL 架构:从连接层到存储引擎
mysql
灯澜忆梦15 小时前
【MySQL18】进阶篇 | MySQL管理
数据库·mysql
lv__pf17 小时前
spring之整合mybatis【TL spring 12】
mysql·spring·mybatis
Alex Gram19 小时前
数据库同步工具PanguSync图文教程
java·mysql·postgresql·sqlserver·c#·数据库同步软件·数据库同步工具
Lethehong20 小时前
MySQL迁移如何做到零改造?四层兼容方案详解
数据库·mysql·adb
竹枝溪1 天前
MySQL进阶:约束、多表设计、多表查询与事务
java·数据库·mysql·事务·子查询·acid·多表查询
技术长镜头1 天前
别再只会“加索引”:从磁盘页到 B+Tree,彻底理解 MySQL 索引的设计与运行
后端·mysql
城管不管1 天前
MySQL 慢查询完整排查
java·服务器·jvm·数据库·mysql·spring·面试
树码小子1 天前
MySQL 的事务隔离级别(重点面试题)
数据库·mysql
01_ice1 天前
MySQL表的约束
数据库·sql·mysql