Search code examples
c#azure-service-fabric

How to communicate with a specific instance of a stateless service?


Is it possible to communicate with a specific instance of a Service Fabric Stateless Service. The partition count for the service is set to '-1' so there should be an instance of that service on each node. I would like to access each of those specifically.


Solution

  • See here and here

    tl;dr: Yes you can, but if you need to, you should ask yourself if your service should really be stateful.