We know well the MySQL Group Replication cluster is functionally working based on the GTID . GTID is mandatory for group replication . Usually, GTID is the combination of source_id ( or server_uuid ) and transaction_id . Do you think the same approach is following in the MySQL Group Replication as well ? Well, this blog mainly going to focus on the below three topics .
- How the binary log GTID events are being generated in the normal MySQL instance ?
- How the binary log GTID events are being generated in the MySQL Group Replication cluster ?
- How to configure the asynchronous replication from Group replication cluster without single point of failure ?
How the binary log GTID events are being generated in normal MySQL instance ?
As I told, the Global Transaction Identifier ( GTID ) will be the combination of server_uuid and transaction_id . …
[Read more]