I want to deploy multiple instances of my Service Fabric Stateless Service (Background Service) on individual nodes in the cluster. So basically if I have 10 nodes in the cluster I want 10 application instances of stateless service to be deployed on individual nodes.
The deployment is creating 2 - 3 applications on single node and some of the nodes are unutilized.
Is there a way to bind the application to individual nodes?
In ApplicationManifest file you can specify Value to -1 in instance count, service fabric runtime will deploy one instance of service in every node. This value can be passed via parameter files.