Whats the best way to implement loosely coupled micro services in Service Fabric using asynchronous messaging. I want service A to publish a message and Service B to receive it. Can I use rabbitmq or azure message bus in such cases. If so how do I enable communication with those endpoints in a scaling architecture?
Asked
Active
Viewed 220 times
1 Answers
1
I'd recommend having a look at this code and/or library.
- https://github.com/SoCreate/service-fabric-pub-sub
- https://www.nuget.org/packages/ServiceFabric.PubSubActors/
It allows pub/sub messaging between services and actors, without the need for external dependencies.

LoekD
- 11,402
- 17
- 27