Reputation: 57
I am currently developing an architecture as follows
Now I want the following thing
Can anyone let me how to achieve point 3 only? Please note, only one table needs to be synchronized. Only DML operations are there
Upvotes: 0
Views: 339
Reputation: 11
You requirement is bit similar to High Availability of your DB server. please look into the following link https://docs.oracle.com/cd/B28359_01/server.111/b28281/architectures.htm#i1008361 http://www.oracle.com/technetwork/database/availability/index.html
Ideally, High availability is configured with One Master Node(server) and two slaves (among them one at least should be active stage)
Now, if the master is down, the active slave become Master and passive one will be active.
Later when initial master is recovered, it will be acted as passive slave.
All the servers would be in sync (periodically or with some pre-defined trigger points)
Upvotes: 1