I have a database which I want to replicate to an InnoDB Cluster, and then failover the server to the InnoDB cluster.
I was wondering if there are any issues replicating to an InnoDB cluster.
The reason why I ask is I setup a MySQL to replicate to an InnoDB Cluster of 2 nodes (just for testing).
I create a database and table on the Master, it replicates to cluster node1, and the same database and table appear on cluster node2.
When I insert data on the Master, it goes to node1, but doesn't go to node2.
When I insert data into node1, it goes into node2.
It sort of makes me think the data is getting committed on node1, but not propagating to node2 when its done through replication.
Would any problem cause this? Or is this a bug?
I am using Ubuntu 12.4 and the latest Percona download for it.
Thanks!
Mark