Combining Azure Service Fabric and Service Bus
To integrate Service Fabric into an existing application landscape, it often makes sense to introduce a queuing mechanism.
For example, it could make sense to have a back-office shipping system notify services running in Service Fabric about completed shipments.
Using a reliable queue effectively decouples the two systems. It allows for downtime in either system, without negatively affecting the other. Obviously, the queue system itself needs to be rock solid, fortunately such systems are readily available. One option is to use Azure Service Bus.
You can find all sources here.
Continue reading “Combining Azure Service Fabric and Service Bus”
