作为从头创建 ReplicaSet 的替代方法,您可以使用
adoptFromAR
带有
dba.createReplicaSet()
. 扫描复制设置,如果它与
InnoDB ReplicaSet Limitations兼容,AdminAPI 会创建必要的元数据。采用复制设置后,您只能使用 AdminAPI 来管理 InnoDB ReplicaSet。
要将现有的复制设置转换为 InnoDB ReplicaSet,请连接到主副本,也称为源。从实例 MySQL Shell 的已连接全局会话开始,自动扫描和验证复制拓扑。在采用期间检查所有实例的配置,以确保它们与 InnoDB ReplicaSet 使用兼容:
所有复制通道都必须处于活动状态,并且它们通过 GTID 集验证的事务集必须一致。
假定实例具有相同的状态或能够收敛。
从 MySQL Shell 的全局会话连接到的实例开始,自动扫描和验证复制拓扑。此操作对采用的 ReplicaSet 所做的唯一更改是元数据模式的创建。现有复制通道在采用期间不会更改,但您可以在后续主交换机操作期间更改它们。
例如,采用由InnoDB ReplicaSet
example1
上
的 MySQL 服务器实例组成的复制拓扑。example2
连接到主要地址example1
和问题:
mysql-js> rs = dba.createReplicaSet('testadopt', {'adoptFromAR':1})
A new replicaset with the topology visible from 'example1:3306' will be created.
* Scanning replication topology...
** Scanning state of instance example1:3306
** Scanning state of instance example2:3306
* Discovering async replication topology starting with example1:3306
Discovered topology:
- example1:3306: uuid=00371d66-3c45-11ea-804b-080027337932 read_only=no
- example2:3306: uuid=59e4f26e-3c3c-11ea-8b65-080027337932 read_only=no
- replicates from example1:3306
source="localhost:3310" channel= status=ON receiver=ON applier=ON
* Checking configuration of discovered instances...
This instance reports its own address as example1:3306
example1:3306: Instance configuration is suitable.
This instance reports its own address as example2:3306
example2:3306: Instance configuration is suitable.
* Checking discovered replication topology...
example1:3306 detected as the PRIMARY.
Replication state of example2:3306 is OK.
Validations completed successfully.
* Updating metadata...
ReplicaSet object successfully created for example1:3306.
Use rs.add_instance() to add more asynchronously replicated instances to
this replicaset and rs.status() to check its status.
一旦采用了 InnoDB ReplicaSet,您就可以像使用已创建的 ReplicaSet 一样使用它。
从这一点开始,您必须仅使用 AdminAPI 来管理 InnoDB ReplicaSet。