Hello,
I have a problem defining the best way to replicate and synchronize some information that I have in different mysql servers.
Let me explain:
Actual Scenario:
Server A
-Table A1 (read/write) Operations
-Table A2 (read/write) Operations
Server B
-Table B1 (write) Operations
Desired Scenario:
Server A
-Table A1 (read/write) Operations
-Table A2 (read/write) Operations
-Table replicated B1 (read) Operations
Server B
-Table B1 (write) Operations
-Table A1 replicated (read) Operations
-Table A2 replicated (read) Operations
How should I define my mysql replication configuration?
Should I define the two servers as Master?
Regards,
Pedro