I have a source and replica that is up and running and replicating.
I have to create a new database and load about 200gb of data.
I tried loading on the source but it causes a huge lag in the replica side ( its across the country)
Can I use the following steps to do the loading:
- binlog-ignore-db = new_database
- create database on both the source and replica
- import data on both the source and the replica separately
- remove binlog-ignore-db = new_database
Will I run any issues after I remove the binlog-ignore-db? The replica will no longer look for the transactions I loaded previously, correct?