Today in our series of articles related to MySQL Group Replication’s limitations, let’s have a quick look at Savepoints.
The manual is clear about this: Transaction savepoints are not supported.
The first thing to check then is if the application that will use our MySQL Group Replication Cluster is currently using savepoints.
We have two ways to find this, the first is using STATUS variables:
mysql> show global status like '%save%'; +----------------------------+-------+ | Variable_name | Value | +----------------------------+-------+ | Com_release_savepoint | 2 | | Com_rollback_to_savepoint | 0 | | Com_savepoint | 4 | | Handler_savepoint | 0 | | Handler_savepoint_rollback | 0 | +----------------------------+-------+
…
[Read more]