I'm new to replication process.
In one of Rails project it's necessary to share records of one table between two applications.
Let's say share records between first application DB A
and second application DB B
.
I decided to move that logic on DB level.
- Is is possible to configure
MySQL
replication in order to copy only particular records (e.g. recordswhere need_to_replicate_to_B_flag = true
)? - Or I should find another way to implement this?