I have a master/slave replication setup based on statement based replication. On master database named DB1, I have 5 tables and I want to replicate only two table on slave's database named DB2.
Also, I want to change the database name on my slave end.
So my configuration file on Slave end look like this and replication filtering is this:
replicate-rewrite-db="DB1->DB2"
replicate-do-table=DB2.table4
replicate-do-table=DB2.table5
Also I have tried below filtering as well:
replicate-rewrite-db="DB1->DB2"
replicate-do-table=DB1.table4
replicate-do-table=DB1.table5
But in both case records not getting replicated , also no error is reporting.
As per MySQL documentation , replicate-rewrite-db doesn't work with replicate-do-table.
Any method to resolve this? Or is this not possible?
I'm using MySQL 5.6 community edition on Linux server.
I haven't made any changes to master end as it is on customer side.