If you make configuration changes to a cluster outside of the
AdminAPI commands, for example by changing an instance's
configuration manually to resolve configuration issues or after
the loss of an instance, you need to update the InnoDB Cluster
metadata so that it matches the current configuration of
instances. In these cases, use the
operation, which enables you to update the InnoDB Cluster
metadata either manually or using an interactive wizard. The
Cluster
.rescan()
operation can detect new active instances that are not
registered in the metadata and add them, or obsolete instances
(no longer active) still registered in the metadata, and remove
them. You can automatically update the metadata depending on the
instances found by the command, or you can specify a list of
instance addresses to either add to the metadata or remove from
the metadata. You can also update the topology mode stored in
the metadata, for example after changing from single-primary
mode to multi-primary mode outside of AdminAPI.
Cluster
.rescan()
group_replication_transaction_size_limit
is set to the maximum value in Replica Clusters. The original
value is stored in the metadata schema and is restored by
in the event of a switchover or failover.
Cluster
.rescan()
The syntax of the command is
.
The Cluster
.rescan([options])options
dictionary supports the
following:
-
updateViewChangeUuid
: Boolean value used to indicate if a value should be generated and set for thegroup_replication_view_change_uuid
system variable on the cluster instances.NoteThis is not required for Clusters running MySQL Server 8.3.0 or higher.
This system variable supplies an alternative UUID for view change events generated by the group. For MySQL Server instances at release 8.0.27 and above, for an InnoDB Cluster that is part of an InnoDB ClusterSet, the
group_replication_view_change_uuid
system variable is required and must be set to the same value on all member servers in the cluster. An InnoDB Cluster that is created using thedba.createCluster()
command gets a value generated and set for the system variable on all the member servers. An InnoDB Cluster created before MySQL Shell 8.0.27 might not have the system variable set, but the InnoDB ClusterSet creation process checks for this and fails with a warning if it is absent.By default,
updateViewChangeUuid
is set tofalse
, and if the system variable is not found or does not match on any of the instances, a warning message is returned to let you know you must set a value for the system variable and reboot the InnoDB Cluster. If you setupdateViewChangeUuid
totrue
, the rescan operation generates and sets a value forgroup_replication_view_change_uuid
on all the member servers, following which you must reboot the cluster to implement the changes. The
command automatically generates and sets the system variable value in the same way as ifCluster
.rescan()true
was set, with a cluster reboot required to implement the changes. When you have rebooted the cluster, you can retry the InnoDB ClusterSet creation process. -
upgradeCommProtocol
: Boolean value used to indicate if the Group Replication communication protocol version should be upgraded (true) or not (false) to the version supported by the instance in the cluster that is at the lowest MySQL release. By default, the communication protocol version is not upgraded (false). AdminAPI operations that cause a topology change return a message if the communication protocol version can be upgraded, and you can use this option to carry out the upgrade at a suitable time. It is advisable to upgrade to the highest available version of the Group Replication communication protocol to support the latest features, such as message fragmentation for large transactions. For more information, see Setting a Group's Communication Protocol Version.If the value is
true
then the Group Replication communication protocol version is upgraded to the version supported by the instance in the cluster that is at the lowest MySQL release.If the value is
false
then the Group Replication communication protocol version is not upgraded.