Is there any way to stop a service being moved between nodes in Service Fabric?
I have a stateless service that connects to an api to collect data
This API only permits 1 login at a time.
If Service Fabric constantly moves between nodes there are 2 potential issues -
1) I can walk into concurrent login issues
2) Assuming I can figure out when 1 service is being shut down and another is being started up, there will be a gap of x seconds whilst the service on the new node logs in. I need constant connection to the api
Once the service is started on a node, I want it to stay put!
Paul