MySQL Shell 9.4
        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
        Cluster.rescan()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
          Cluster.rescan()
        The syntax of the command is
        Cluster.rescan([options])options dictionary supports the
        following:
      
            updateViewChangeUuid: Boolean value used
            to indicate if a value should be generated and set for the
            group_replication_view_change_uuid
            system variable on the cluster instances.
          
This 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 the
            dba.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
            to false, 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 set
            updateViewChangeUuid to
            true, the rescan operation generates and
            sets a value for
            group_replication_view_change_uuid
            on all the member servers, following which you must reboot
            the cluster to implement the changes. The
            Cluster.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.