Search code examplesazure-service-fabricservice-fabric-statefulservice-fabric-actorHow many actors can be created in service fabric cluster nodes
- What is max no of actors in service fabric cluster
- how does it executes concurrently
Solution
- An Actor ID is a long value, so 18,446,744,073,709,551,615 actors per
ActorType
.
- An Actor instance executes one thread at one time by default (single threaded execution).
Multiple Actor instances can be active at the same time.