I got task to configure I think some sort of monster. My boss want to have two mysql servers. Let's say serverA and serverB have databases db1,db2,db3,db4. He wanted that serverA will be master for only databases db1 and db2, and thise databases will be replicated to serverB, and serverB will be master for databases db3 and db4 and thise databases will be replicated to serverA.
From that description it looks like it could be possible with filtered replication(filtering using binlog-do-db and binlog-ignore-db commands).
I'm a little bit sceptic even if it possible.
So my question is it possible and if it is should I configure production servers in that way(and why not)?