You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When available we should be using GTID instead of Binary log file and position as it will make failover easier.
A few things to consider:
Since we have per table binlog position and we have selective table replication, we need to ensure that we don't create GTID gaps for events that we skip.
MySQL added support for GTID Tags, so the layout might look uuid:seq_id or uuid:tag:seq_id - we should be able to store both
MariaDB layout is also different, we should check if we can easily implement this and comply with both formats
Once this is done, we should register as a replica using auto_position=1 (GTID)
Description
When available we should be using GTID instead of Binary log file and position as it will make failover easier.
A few things to consider:
https://dev.mysql.com/doc/refman/8.4/en/replication-gtids-concepts.html
https://mariadb.com/kb/en/gtid/
Change in user-visible behavior
Requires documentation change
The text was updated successfully, but these errors were encountered: