Multi-master update everywhere solution for MySQL is here. MySQL Group Replication ensures virtual synchronous updates on any node in a group of MySQL servers, with conflict handling and failure detection. Distributed recovery is also in the package to ease the process of adding new nodes.
Starting with MySQL 5.7.2 there has been a constant effort from the replication team to provide more fields to monitor the replication performance in the performance schema tables. This post gives a brief overview of the Performance Schema tables that have been introduced for MySQL Group Replication.
TABLES INTRODUCED
There are two new tables introduced as a part of the MySQL Group Replication monitoring.
- performance_schema.replication_node_status
- performance_schema.replication_connection_nodes
Lets go through each table in detail :
REPLICATION NODE STATUS
…[Read more]