Recently on MySQL Forums, somebody was looking
for documentation or procedure to upgrade a MySQL InnoDB Cluster
(or Group Replication cluster) to a newer version.
In this post I am illustrating the best practices to achieve this
task safely.
To illustrate the procedure, I will use an InnoDB Cluster of 3
members: mysql1
, mysql2
and
mysql3
. The cluster is setup in Single-Primary mode
(mysql1) and runs MySQL 5.7.21.
Let’s have a look at the cluster status:
MySQL / mysql1:3306 / JS / cluster.status()
{
"clusterName": "MyCluster",
"defaultReplicaSet": {
"name": "default",
"primary": "mysql1:3306",
"ssl": "DISABLED",
"status": "OK",
"statusText": "Cluster is ONLINE and can tolerate up to …
[Read more]