You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having a Service Fabric application with some Actor Services in it.
Can I use the same mechanism for querying all the Actor States?
Or do we have any mechanism for querying the actors?
Thanks
Prabhuji
The text was updated successfully, but these errors were encountered:
The current code cannot be used directly to query all Actor states, as it is Reliable State Manager specific. A similar mechanism could be used to query Actor states via the IActorStateProvider. However, the Actor runtime makes assumptions about concurrency that would make this difficult. The Actor state is generally not meant to be read outside of the Actor itself, so this would take some work.
Long term, though, this is absolutely needed for Service Fabric to be considered a true data platform.
I am having a Service Fabric application with some Actor Services in it.
Can I use the same mechanism for querying all the Actor States?
Or do we have any mechanism for querying the actors?
Thanks
Prabhuji
The text was updated successfully, but these errors were encountered: