I'm trying to setup the multi-source replication and I'm reading that tutorial : multi-source replication
I think I've found exactly what we are looking for! But I have a few questions, since this is my first time I’m trying to configure a MySQL replication.
We will have 2 (or more, will be added in the future, one by one) servers (masters) which will be installed on external IP (different customers office) and 1 “main server” (slave) installed on a “web server” (don’t know where for the moment).
Is that possible to add a “master” once everything is setup for the other masters (and the slave) without restarting each server? In the future, multiple masters will probably be added.
If we use the auto increment and that field is not my primary key, do I have to setup the part “auto_increment_increment”? This is because the number of masters will change over time.
Do we absolutely need to use InnoDB for the tables to be able to replicate them in the multi-source replication? Or it is possible to use MyISAM?
Is it possible to replicate only a few tables, I mean, ignore some tables? Do we have to use this : REPLICATE_IGNORE_TABLE ?