Hello @rkuijk,
Run this on the replica: SELECT COUNT(*), db, tbl FROM percona.checksums WHERE this_crc != master_crc GROUP BY db, tbl
It will show you a count of the number of chunks that are different between source, and replica, grouped by db.table.
“this_crc” and “this_cnt” are the CRC checksum, and row counts as calculated on “this” server. If you are looking at node1, then “this” means node1. If you look at node42233, this “this” means node42233. “master_crc” and “master_cnt” are similar, but are a copy from the upstream source so that you can compare “this” (ie: local) to source.