mysql mgr recovering_深度理解MySQL Group Replication的RECOVERING状态

本文详细介绍了在MySQL Group Replication中遇到成员变为RECOVERING状态的情况。通过检查relay日志应用和进程,发现数据库正在从故障恢复并最终成功变为ONLINE状态。在恢复过程中,服务器从其他成员同步数据,并在完成数据同步后加入组复制。日志显示了整个恢复过程,包括尝试启动、数据恢复和最后加入组成员的细节。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

接收到报警通知,db3这台组复制成员故障down机了,等修复好,启动服务器,然后再启动mysql实例,进去查看状态,变成了RECOVERING,如下所示;mysql> SELECT * FROM performance_schema.replication_group_members;

+---------------------------+--------------------------------------+----------------------+-------------+--------------+

| CHANNEL_NAME | MEMBER_ID | MEMBER_HOST | MEMBER_PORT | MEMBER_STATE |

+---------------------------+--------------------------------------+----------------------+-------------+--------------+

| group_replication_applier | 3381d155-d7d1-11e6-94f7-b8ca3af6e36c | hch_test_dbm2_121_71 | 3317 | ONLINE |

| group_replication_applier | 664b9ce9-d7de-11e6-9e8c-18a99b763071 | hch_test_web_1_24 | 3317 | ONLINE |

| group_replication_applier | 84dba8ff-d7d2-11e6-aa9a-18a99b76310d | bpe_service | 3317 | RECOVERING |

+---------------------------+--------------------------------------+----------------------+-------------+--------------+

3 rows in set (0.00 sec)

mysql>这种状态有点类似mongodb的sendary的RECOVERING状态,对于刚刚出现的MySQL Group Replication新技术,遇到这种情况,这种情况怎么办?

在mongodb的这种模式下,一般是secondary从primary库上不停复制数据,所以我们遵循这种思路,去看下db2的数据目录,看到有很多relay-bin的recovery日志在应用执行,如下所示relay日志包记录-rw-r----- 1 mysql mysql 383 1月 17 16:08 bpe_service-relay-bin-group_replication_applier.000019

-rw-r----- 1 mysql mysql 502 1月 17 16:11 bpe_service-relay-bin-group_replication_applier.000020

-rw-r----- 1 mysql mysql 502 1月 17 16:23 bpe_service-relay-bin-group_replication_applier.000021

-rw-r----- 1 mysql mysql 421 1月 17 16:23 bpe_service-relay-bin-group_replication_applier.000022

-rw-r----- 1 mysql mysql 228 1月 17 16:23 bpe_service-relay-bin-group_replication_applier.index

-rw-r----- 1 mysql mysql 312 1月 17 16:24 bpe_service-relay-bin-group_replication_recovery.000007

-rw-r----- 1 mysql mysql 1.1G 1月 17 16:24 bpe_service-relay-bin-group_replication_recovery.000008

-rw-r----- 1 mysql mysql 391 1月 17 16:24 bpe_service-relay-bin-group_replication_recovery.000009

-rw-r----- 1 mysql mysql 312 1月 17 16:24 bpe_service-relay-bin-group_replication_recovery.000010

-rw-r----- 1 mysql mysql 1.1G 1月 17 16:24 bpe_service-relay-bin-group_replication_recovery.000011

-rw-r----- 1 mysql mysql 391 1月 17 16:24 bpe_service-relay-bin-group_replication_recovery.000012

-rw-r----- 1 mysql mysql 312 1月 17 16:24 bpe_service-relay-bin-group_replication_recovery.000013

-rw-r----- 1 mysql mysql 1.1G 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000014

-rw-r----- 1 mysql mysql 391 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000015

-rw-r----- 1 mysql mysql 312 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000016

-rw-r----- 1 mysql mysql 1.1G 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000017

-rw-r----- 1 mysql mysql 391 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000018

-rw-r----- 1 mysql mysql 312 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000019

-rw-r----- 1 mysql mysql 1.1G 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000020

-rw-r----- 1 mysql mysql 391 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000021

-rw-r----- 1 mysql mysql 312 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000022

-rw-r----- 1 mysql mysql 1.1G 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000023

-rw-r----- 1 mysql mysql 391 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000024

-rw-r----- 1 mysql mysql 312 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.000025

-rw-r----- 1 mysql mysql 181M 1月 17 16:26 bpe_service-relay-bin-group_replication_recovery.000026

-rw-r----- 1 mysql mysql 1.2K 1月 17 16:25 bpe_service-relay-bin-group_replication_recovery.index

drwxr-x--- 2 mysql mysql 4.0K 1月 17 14:11 business_db

然后在mysql窗口,可以看到几个线程,其中有一个就是Reading event from the relay log线程,就是表示正在应用relay日志:mysql> show full processlist;

+----+-------------+-----------+------+---------+------+--------------------------------------------------------+-----------------------+

| Id | User | Host | db | Command | Time | State | Info |

+----+-------------+-----------+------+---------+------+--------------------------------------------------------+-----------------------+

| 28 | system user | | NULL | Connect | 701 | Suspending | NULL |

| 31 | system user | | NULL | Connect | 701 | Slave has read all relay log; waiting for more updates | NULL |

| 35 | system user | | NULL | Connect | 699 | Waiting for master to send event | NULL |

| 36 | system user | | NULL | Connect | 4519 | Reading event from the relay log | NULL |

| 38 | root | localhost | NULL | Query | 0 | starting | show full processlist |

+----+-------------+-----------+------+---------+------+--------------------------------------------------------+-----------------------+

5 rows in set (0.00 sec)

mysql>

再过一会儿,数据同步完成之后,bpe_service就会从RECOVERING变成ONLINE状态。这个更加证实了,数据已经同步完成。mysql> SELECT * FROM performance_schema.replication_group_members;

+---------------------------+--------------------------------------+----------------------+-------------+--------------+

| CHANNEL_NAME | MEMBER_ID | MEMBER_HOST | MEMBER_PORT | MEMBER_STATE |

+---------------------------+--------------------------------------+----------------------+-------------+--------------+

| group_replication_applier | 3381d155-d7d1-11e6-94f7-b8ca3af6e36c | hch_test_dbm2_121_71 | 3317 | ONLINE |

| group_replication_applier | 664b9ce9-d7de-11e6-9e8c-18a99b763071 | hch_test_web_1_24 | 3317 | ONLINE |

| group_replication_applier | 84dba8ff-d7d2-11e6-aa9a-18a99b76310d | bpe_service | 3317 | ONLINE |

+---------------------------+--------------------------------------+----------------------+-------------+--------------+

3 rows in set (0.00 sec)

mysql>

去查看后台error log日志显示,刚开始启动,在做CHANGE MASTER TO FOR CHANNEL ‘group_replication_applier’ executed’的时候,没有取到值,然后看后面同步完后,就会执行加入组复制成员的命令“CHANGE MASTER TO FOR CHANNEL 'group_replication_recovery' executed'.

Previous state master_host='hch_test_web_1_24', master_port= 3317, master_log_file='',

master_log_pos= 4, master_bind=''. New state master_host='', master_port= 0, master_log_file='', master_log_pos= 4, master_bind=''”,

在执行结束后,最后告诉我们“’This server was declared online within the replication group’”已经加入到了组成员,而且变成了实时的ONLINE状态:2017-01-17T08:23:15.710146Z 4 [Note] Plugin group_replication reported: 'auto_increment_increment is reset to 1'

2017-01-17T08:23:15.710200Z 4 [Note] Plugin group_replication reported: 'auto_increment_offset is reset to 1'

2017-01-17T08:23:15.710401Z 20 [Note] Error reading relay log event for channel 'group_replication_applier': slave SQL thread was killed

2017-01-17T08:23:15.711212Z 17 [Note] Plugin group_replication reported: 'The group replication applier thread was killed'

2017-01-17T08:23:42.141239Z 4 [Note] Plugin group_replication reported: 'Group communication SSL configuration: group_replication_ssl_mode: "DISABLED"'

2017-01-17T08:23:42.141451Z 4 [Note] Plugin group_replication reported: '[GCS] Added automatically IP ranges 127.0.0.1/8,192.168.121.111/23 to the whitelist'

2017-01-17T08:23:42.141990Z 4 [Note] Plugin group_replication reported: '[GCS] Translated 'db2' to 192.168.121.111'

2017-01-17T08:23:42.142174Z 4 [Note] Plugin group_replication reported: '[GCS] SSL was not enabled'

2017-01-17T08:23:42.142220Z 4 [Note] Plugin group_replication reported: 'Initialized group communication with configuration:

group_replication_group_name: "e4668cea-d7ca-11e6-86b5-18a99b76310d"; group_replication_local_address: "db2:24902";

group_replication_group_seeds: "db1:24901,db2:24902,db3:24903"; group_replication_bootstrap_group: false;

group_replication_poll_spin_loops: 0; group_replication_compression_threshold: 1000000; group_replication_ip_whitelist: "AUTOMATIC"'

2017-01-17T08:23:42.142936Z 28 [Note] 'CHANGE MASTER TO FOR CHANNEL 'group_replication_applier' executed'.

Previous state master_host='', master_port= 0, master_log_file='', master_log_pos= 4, master_bind=''.

New state master_host='', master_port= 0, master_log_file='', master_log_pos= 4, master_bind=''.

-- #(1)尝试启动默认的组复制,结果信息不对称,启动失败,然后开始初始化Group Replication

2017-01-17T08:23:42.166956Z 31 [Note] Slave SQL thread for channel 'group_replication_applier' initialized,

starting replication in log 'FIRST' at position 0, relay log './bpe_service-relay-bin-group_replication_applier.000019' position: 4

2017-01-17T08:23:42.166960Z 4 [Note] Plugin group_replication reported: 'Group Replication applier module successfully initialized!'

2017-01-17T08:23:42.167064Z 4 [Note] Plugin group_replication reported: 'auto_increment_increment is set to 7'

2017-01-17T08:23:42.167079Z 4 [Note] Plugin group_replication reported: 'auto_increment_offset is set to 12002'

2017-01-17T08:23:42.167219Z 0 [Note] Plugin group_replication reported: 'state 4257 action xa_init'

2017-01-17T08:23:42.167292Z 0 [Note] Plugin group_replication reported: 'Successfully bound to 0.0.0.0:24902 (socket=49).'

2017-01-17T08:23:42.167341Z 0 [Note] Plugin group_replication reported: 'Successfully set listen backlog to 32 (socket=49)!'

2017-01-17T08:23:42.167357Z 0 [Note] Plugin group_replication reported: 'Successfully unblocked socket (socket=49)!'

2017-01-17T08:23:42.167400Z 0 [Note] Plugin group_replication reported: 'connecting to db2 24902'

2017-01-17T08:23:42.167585Z 0 [Note] Plugin group_replication reported: 'Ready to accept incoming connections on 0.0.0.0:24902 (socket=49)!'

2017-01-17T08:23:42.174427Z 0 [Note] Plugin group_replication reported: 'client connected to db2 24902 fd 50'

2017-01-17T08:23:42.174807Z 0 [Note] Plugin group_replication reported: 'connecting to db2 24902'

2017-01-17T08:23:42.175008Z 0 [Note] Plugin group_replication reported: 'client connected to db2 24902 fd 63'

2017-01-17T08:23:42.175234Z 0 [Note] Plugin group_replication reported: 'connecting to db2 24902'

2017-01-17T08:23:42.175411Z 0 [Note] Plugin group_replication reported: 'client connected to db2 24902 fd 65'

2017-01-17T08:23:42.175614Z 0 [Note] Plugin group_replication reported: 'connecting to db2 24902'

2017-01-17T08:23:42.175799Z 0 [Note] Plugin group_replication reported: 'client connected to db2 24902 fd 67'

2017-01-17T08:23:42.176006Z 0 [Note] Plugin group_replication reported: 'connecting to db2 24902'

2017-01-17T08:23:42.176176Z 0 [Note] Plugin group_replication reported: 'client connected to db2 24902 fd 69'

2017-01-17T08:23:42.176377Z 0 [Note] Plugin group_replication reported: 'connecting to db2 24902'

2017-01-17T08:23:42.176563Z 0 [Note] Plugin group_replication reported: 'client connected to db2 24902 fd 71'

2017-01-17T08:23:42.176876Z 0 [Note] Plugin group_replication reported: 'connecting to db1 24901'

2017-01-17T08:23:42.177312Z 0 [Note] Plugin group_replication reported: 'client connected to db1 24901 fd 73'

2017-01-17T08:23:43.463474Z 0 [Note] Plugin group_replication reported: 'state 4257 action xa_snapshot'

2017-01-17T08:23:43.463969Z 0 [Note] Plugin group_replication reported: 'new state x_recover'

2017-01-17T08:23:43.464000Z 0 [Note] Plugin group_replication reported: 'state 4277 action xa_complete'

2017-01-17T08:23:43.464275Z 0 [Note] Plugin group_replication reported: 'new state x_run'

2017-01-17T08:23:44.619112Z 0 [Note] Plugin group_replication reported: 'Starting group replication recovery with view_id 14844510167669342:17'

--#(2) 开始进行组内数据recovery

2017-01-17T08:23:44.619451Z 34 [Note] Plugin group_replication reported: 'Establishing group recovery connection with a possible donor. Attempt 1/10'

2017-01-17T08:23:44.624181Z 34 [Note] 'CHANGE MASTER TO FOR CHANNEL 'group_replication_recovery' executed'. Previous state master_host='',

master_port= 0, master_log_file='', master_log_pos= 4, master_bind=''. New state master_host='hch_test_web_1_24', master_port= 3317,

master_log_file='', master_log_pos= 4, master_bind=''.

2017-01-17T08:23:44.628853Z 34 [Note] Plugin group_replication reported: 'Establishing connection to a group replication

recovery donor 664b9ce9-d7de-11e6-9e8c-18a99b763071 at hch_test_web_1_24 port: 3317.'

2017-01-17T08:23:44.629156Z 35 [Warning] Storing MySQL user name or password information in the master info repository is not secure and

is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax'

in the MySQL Manual for more information.

2017-01-17T08:23:44.635870Z 36 [Note] Slave SQL thread for channel 'group_replication_recovery' initialized, starting

replication in log 'FIRST' at position 0, relay log './bpe_service-relay-bin-group_replication_recovery.000001' position: 4

2017-01-17T08:23:44.681897Z 35 [Note] Slave I/O thread for channel 'group_replication_recovery':

connected to master 'repl@hch_test_web_1_24:3317',replication started in log 'FIRST' at position 4

2017-01-17T08:43:34.219952Z 34 [Note] Plugin group_replication reported: 'Terminating existing group replication donor connection and

purging the corresponding logs.'

2017-01-17T08:43:34.220609Z 36 [Note] Slave SQL thread for channel 'group_replication_recovery' exiting,

replication stopped in log 'binlog.000042' at position 185511578

2017-01-17T08:43:34.226869Z 35 [Note] Slave I/O thread killed while reading event for channel 'group_replication_recovery'

2017-01-17T08:43:34.226886Z 35 [Note] Slave I/O thread exiting for channel 'group_replication_recovery', read up to log 'binlog.000042', position 185511578

2017-01-17T08:43:34.269973Z 34 [Note] 'CHANGE MASTER TO FOR CHANNEL 'group_replication_recovery' executed'.

Previous state master_host='hch_test_web_1_24', master_port= 3317, master_log_file='',

master_log_pos= 4, master_bind=''. New state master_host='', master_port= 0, master_log_file='', master_log_pos= 4, master_bind=''.

-- # (3)已经数据恢复完成,加入组,成为组成员

2017-01-17T08:43:34.290920Z 0 [Note] Plugin group_replication reported: 'This server was declared online within the replication group'小结:mysql group replication的使用来说,有些理念比如mongodb的分片以及primary-secondary的思路理念可以参考下,这样理解起来就会比较容易一些。

<think>好的,我需要帮助用户理解MySQL MGR状态RECOVERING的原因及解决方法。首先,我要回忆一下MySQL Group ReplicationMGR)的基本知识。MGRMySQL的一种高可用性解决方案,通过组复制实现数据的同步。RECOVERING状态通常表示节点正在尝试加入集群,但遇到了问题。 根据用户提供的引用内容,有几个关键点需要注意。引用[4]提到从库状态RECOVERING,导致数据不同步,并且日志显示从库已经存在数据库linux,无法创建。这说明可能存在数据冲突或者配置问题。另外,引用[3]提到重启三台服务器的MySQL,可能恢复流程中的某些步骤没有正确执行。引用[2]中的日志显示复制线程退出,停止在位置0,可能表示复制过程中断或无法找到正确的日志位置。 接下来,我需要整理可能的原因。首先,数据不一致可能导致节点无法加入集群,比如已有的数据库或表与新加入节点的预期状态冲突。其次,网络问题可能导致节点无法连接到其他成员,引用[5]显示ESTABLISHED连接,但可能存在防火墙或端口配置问题。第三,Binlog配置错误或文件丢失会影响恢复过程,如引用[1]提到的relay-bin文件可能存在问题。此外,节点版本不一致或配置参数不匹配也可能引发问题。 解决方法方面,应该先检查数据一致性,确保新节点没有冲突的数据。然后验证网络连接,确保端口开放,节点间可以通信。检查Binlog配置,确保路径正确,文件存在。确认所有节点的配置参数一致,特别是group_replication相关的设置。如果问题依旧,可能需要重新引导节点,清除旧数据后重新加入集群。 用户可能需要知道如何具体执行这些步骤,比如如何清除数据、如何检查配置参数。同时,需要提醒用户操作前备份数据,避免进一步的问题。最后,生成相关问题可以帮助用户深入理解其他可能的故障情况,如网络配置影响、处理大事务或监控MGR状态的方法。</think>### MySQL MGR状态RECOVERING的原因及解决方法 #### 一、状态定义 在MySQL Group ReplicationMGR)中,`RECOVERING`状态表示节点正在**加入集群的恢复阶段**,需通过分布式恢复流程同步数据。若此状态长时间未变为`ONLINE`,则表明恢复流程受阻[^1][^3]。 --- #### 二、常见原因及解决方案 ##### 1. **数据冲突或已存在数据库** - **现象** 节点本地已存在与集群中同名的数据库或表(如引用[4]中`linux`数据库冲突),导致无法创建复制所需对象。 - **解决方法** ```sql -- 删除本地冲突数据库 DROP DATABASE IF EXISTS linux; -- 重新执行START GROUP_REPLICATION ``` 需确保新节点为**全新实例**或已清理冲突数据。 ##### 2. **网络连接问题** - **现象** 节点无法通过`group_replication_local_address`定义的端口与其他成员通信(如引用[5]中`33061`端口)。 - **解决方法** ```bash # 检查防火墙规则 iptables -L | grep 33061 # 验证节点间双向连通性 telnet 172.1.1.226 33061 ``` ##### 3. **Binlog文件缺失或配置错误** - **现象** 恢复过程中无法找到有效的binlog文件(如引用[1]中`group_replication_recovery.000012`文件异常)。 - **解决方法** ```ini # my.cnf配置示例 [mysqld] log_bin=binlog binlog_format=ROW gtid_mode=ON enforce_gtid_consistency=ON ``` 需确保所有节点配置一致,且`relay_log_recovery=1`[^2]。 ##### 4. **版本或配置不一致** - **现象** 节点间MySQL版本差异或`group_replication`参数(如`group_replication_group_name`)不匹配。 - **解决方法** ```sql -- 检查参数一致性 SHOW GLOBAL VARIABLES LIKE 'group_replication%'; -- 更新版本后重新启动集群 ``` ##### 5. **事务过大或复制超时** - **现象** 大事务导致恢复超时(默认`group_replication_recovery_retry_count=10`)。 - **解决方法** ```sql -- 调整恢复超时参数 SET GLOBAL group_replication_recovery_retry_count=30; ``` --- #### 三、标准恢复流程 1. **清理旧数据** ```bash systemctl stop mysqld rm -rf /var/lib/mysql/* mysqld --initialize-insecure systemctl start mysqld ``` 2. **重新加入集群** ```sql CHANGE MASTER TO MASTER_USER='repl', MASTER_PASSWORD='password' FOR CHANNEL 'group_replication_recovery'; START GROUP_REPLICATION; ``` --- #### 四、监控建议 ```sql -- 查看MGR状态 SELECT * FROM performance_schema.replication_group_members; -- 检查错误日志 SHOW GLOBAL VARIABLES LIKE 'log_error'; ``` ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值