Before you run an RSU, you must have the following:
Running an RSU on a large table can fill up your ephemeral disk. MySQL for VMware Tanzu cannot function properly if there is not sufficient free space on file systems. Before running an RSU, confirm that your ephemeral disk is large enough to run the upgrade.
To check the size of your ephemeral disk, tell your operator to do the following:
To SSH into a node, follow the procedure in BOSH SSH.
To view your data directory, run the following command:
/var/vcap/store/pxc-mysql
To retrieve the size of your largest IDB file, run the following command:
ls -l -ahS
Record the size of the largest IDB file.
To retrieve your ephemeral disk usage, do the procedure in Run mysql-diag Using the BOSH Command Line Interface (CLI) and record the size of the ephemeral disk being used.
If there is not enough free space to add the largest IBD file to the ephemeral disk, update your service plan to one with a larger ephemeral disk.
To run an RSU, tell your operator to do the following:
You need the ID for each of your nodes to run an RSU.
To retrieve the IDs for your nodes, do the following:
To retrieve your service instance GUID, run the following command:
cf service MY-INSTANCE --guid
Where YOUR-INSTANCE
is the name of your MySQL for VMware Tanzu service instance. Record the guid returned in the output.
To identify the nodes in your HA cluster, run the following command:
bosh -d service-instance_GUID vms
Where GUID
is the guid you recorded in the previous step.
To run an RSU to apply a new schema on each node in your deployment, do the following:
To BOSH SSH into your node, do the procedure in BOSH SSH in the Ops Manager documentation.
To set enable global read_only
as an admin user, run the following command:
mysql --defaults-file=/var/vcap/jobs/pxc-mysql/config/mylogin.cnf -e "set global read_only=on;"
To verify that the node is unhealthy, do the procedure explained here: Monitoring Node Health
Add the following to the SQL file you generated:
set wsrep_osu_method=rsu;
to the top of the import file.set global wsrep_desync=on;
to the top of the import file.set global wsrep_desync=off;
to the bottom of the import file.For example:
set wsrep_osu_method=rsu;
set global wsrep_desync=on;
...
set global wsrep_desync=off;
To execute the SQL file, run the following command:
mysql --defaults-file=/var/vcap/jobs/pxc-mysql/config/mylogin.cnf -e -D DATABASE-NAME < SQL-FILE-PATH
Where:
DATABASE-NAME
is the name of the database to use.SQL-FILE-PATH
is the path to your import file.To disable global read_only
, run the following command:
$ mysql --defaults-file=/var/vcap/jobs/pxc-mysql/config/mylogin.cnf -e "set global read_only=off;""
To verify that the node is healthy, do the procedure explain here: Monitoring Node Health
Repeat the above procedure for your next node.
At this point your HA cluster should be stable and running with the new schema.