I am trying to perform a replication audit between two MariaDB 10.5 instances using pt-table-checksum...
.
I am encountering errors, despite the options to bypass the checks.
I created a percona.dsns
table with the following entries:
h=IP_MASTER,P=3306,u=checksum_user,p=PWD
h=IP_SLAVE,P=3306,u=checksum_user,p=PWD
D=percona,u=checksum_user,p=RepL7J,t=dsns
My command is as follows:
pt-table-checksum --no-check-binlog-format --host=IP_MASTER --ignore-databases mysql,percona,performance_schema,information_schema --user=checksum_user --password=PWD --recursion-method=dsn=h=IP_MASTER,D=percona,t=dsns
Is there an incompatibility issue between Percona and MariaDB?
Thank you all.