Let's say you have 30+ console applications running on a Windows machine that can be invoked manually or through scheduled Windows tasks , which would be recommended to move / implement them in Service Fabric?
One way to implement this would be a single Service Fabric application with many stateless services ( Reliable Actorusing timers / reminders), each of which will listen on the service bus queue / topic, and then use the Azure Scheduler to send messages to the queue / topic.
What are the pros and cons of such an implementation? This article seems to list a few of them .
What would be other ways to implement this?
It seems like some people are trying to uphold the inclusion of pub / sub framework in the Service Fabric, if this becomes part of the Service Fabric, will this be a valid option?
source
share