We have business requirement to replicate databases from XtraDB three nodes cluster to a single slave Percona, questions:
Is this document suitable to setup slave replication from XtraDB cluster? [url]Percona XtraBackup
our three nodes cluster have load balancer at the front, can I direct slave replication against that load balancer SQL IP instead of a specific XtraDB node IP? we don’t want to break slave replication if one of our XtraDB node go down.
Since slave will have other development database, is it possible to just select / overwrite particular database from XtraDB without touching all other databases on slave node?
our three nodes cluster have load balancer at the front, can I direct slave replication against that load balancer SQL IP instead of a specific XtraDB node IP? we don’t want to break slave replication if one of our XtraDB node go down.
we’d recommend to point to specific node IP instead of the load balancer, if the master node (PXC node) goes down, you should be able to reconfigure the slave to point to a different master node in the same PXC cluster
Since slave will have other development database, is it possible to just select / overwrite particular database from XtraDB without touching all other databases on slave node?
The filtering should be done on the slave side, read up on the following - replicate-wild-ignore-db or replicate-wild-ignore-table.
our three nodes cluster have load balancer at the front, can I direct slave replication against that load balancer SQL IP instead of a specific XtraDB node IP? we don’t want to break slave replication if one of our XtraDB node go down.
we’d recommend to point to specific node IP instead of the load balancer, if the master node (PXC node) goes down, you should be able to reconfigure the slave to point to a different master node in the same PXC cluster.
As per your solution we have to reconfigure the salve again by taking the backup of the new master node. How we can avoid that?