My master and slave are both MariaDB 10.0.22,and I build the slave using following steps:
1.do a backup from master using mydumper,and found gtid_pos in backdir's meta file
2.(slave)>SET GLOBAL gtid_slave_pos = "XX-XX-XX";
3.(slave)>CHANGE MASTER TO master_host="M_IP", master_port=3306, master_user="USER", master_use_gtid=slave_pos;
4.(slave)>start slave;
But I found show slave status\G;
shows "Using_Gtid: No",So,why my replication not using gtid?
↧
How could let MariaDB's replication using GTID?
↧