RabbitMQ integration

1
Hello everyone ! Can you please advice on how to integrate RabbitMQ to Mendix app? is there any existing module to use? The business case: I have many Mendix apps deployed on-premise that share same master data. I have one app where the business should maintain that data up to date (let’s called it Leader) and all other app are just consumers (Followers). Every time a new update/insert/delete on that date occurs on “Leader” app, it should be reflected among the “followers” apps in async way to avoid any tight coopling.    Thanks for your help !
asked
2 answers
1

Have you looked at Mendix Business Events instead? I believe it solves the problem you are describing.

https://docs.mendix.com/appstore/modules/business-events/

I hope this helps.

 

answered
0

What I understood from your case is that Event Driven Architecture is more suited and FIFO algo seems not important. Thus, you need to apply Event-Driven architecture. You might use Kafka in a way where the leader produces a message "every time a new update/insert/delete" then the followers can consume the message async way and do their duties.

 

https://marketplace.mendix.com/link/component/105878

 

I am new for Mendix, hope it helps 

answered