Search Results
https://dev.mysql.com/doc/refman/8.4/en/group-replication-configuring-online-group.html
To use the functions, connect to a member of the running group and invoke the function with the SELECT statement. You can configure an online group while Group Replication is running by using a set of functions, which rely on a group action ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-distributed-recovery.html
After this, the joining member connects to an online existing member to carry out state transfer. Whenever a member joins or rejoins a replication group, it must catch up with the transactions that were applied by the group members before it ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-getting-started.html
In addition, InnoDB Cluster interfaces seamlessly with MySQL Router, which enables your applications to connect to the cluster without writing your own failover process. MySQL Group Replication is provided as a plugin for the MySQL server; each ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-launching.html
Otherwise, you must install the plugin manually; to do this, connect to the server using the mysql client, and issue the SQL statement shown here: mysql> INSTALL PLUGIN group_replication SONAME 'group_replication.so'; To check that the plugin was ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-message-compression.html
The TCP peer-to-peer nature of the interconnections between N participants in the group makes the sender send the same amount of data N times. For messages sent between online group members, Group Replication enables message compression by default.
https://dev.mysql.com/doc/refman/8.4/en/group-replication-multi-primary-mode.html
If a member stops accepting write transactions, for example, in the event of an unexpected server exit, clients connected to it can be redirected, or failed over, to any other member that is in read/write mode. Group Replication does not handle ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-observability.html
For example, you can connect to a single server in the group and obtain both local and global information by issuing select statements on the Group Replication related Performance Schema tables. There is a lot of automation built into the Group ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-plugin-architecture.html
In one direction, from server to the plugin, there are notifications for events such as the server starting, the server recovering, the server being ready to accept connections, and the server being about to commit a transaction. MySQL Group ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-replication-group-member-stats.html
To use this table to monitor a Group Replication member, issue the following statement: mysql> SELECT * FROM performance_schema.replication_group_member_stats\G You can also use the following statement: mysql> TABLE ... Each member in a replication ...
https://dev.mysql.com/doc/refman/8.4/en/group-replication-replication-group-members.html
Shown in the table is each member's server_uuid, as well as the member's host name and port number, which clients use to connect to it. The performance_schema.replication_group_members table is used for monitoring the status of the different server ...