3

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.

  • I don't know the answer, but I'm curious why you're asking it :) – Chris Missal Jun 30 '16 at 15:39
  • 1
    I use a stateless service to read from an Service Bus Event Hub and I would like to be able to query each instance for the status of the readers, rather than having them report up every so often. – Strahinja Vladetic Aug 09 '16 at 13:14

1 Answers1

2

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.

Community
  • 1
  • 1
Vaclav Turecek
  • 9,020
  • 24
  • 29