Event Based Database Replication In Airavata Cont....

While working through previously discussed approach we discoved that the Topic Routing implementation of RabbitMQ resonate with our requirement. As discussed earlier, consider below diagram, Service A publishes db event to ‘DB Event Exchange’, event manager intercepts that message and lookup for corresponding subscriber services in zk. As service_B and service_C are interested in events from service A, event manager pushishes message to exchange with routing keys ‘service_B’ and ‘service_c’. That way message gets routed to correponding services. If multiple instances of the same service are listening to a queue only one of them reacts.

Service Discovery

We had to send multiple messages to exchange with different routing keys (service_B, service_C). Here, if DB event manager fails to send message with any of the routing keys, sytem would be in unstable state. RabbitMQ allow us to design routing key in a such a way that message can be routed to multiple queues through an exchange. Above case can be handled by sending message with routing key ‘service_B.service_C’, this way DB event manager is sending just one message and RabbitMQ then guarantees delivery to mutiple queues.

With this new tweak, we just need one publisher at DB event manager and messages can to sent by altering routing keys, for example, if new service node service_D gets added, message would be sent with routing key ‘service_B.service_C.service_D’ using the same exchange and inturn the same publisher.

Service Discovery

Gourav and I have completed this part in airavata and created a pull request


Github Commits

My contribution is tracked under pull request.