0
  1. What is max no of actors in service fabric cluster
  2. how does it executes concurrently

1 Answers1

2
  1. An Actor ID is a long value, so 18,446,744,073,709,551,615 actors per ActorType.
  2. An Actor instance executes one thread at one time by default (single threaded execution). Multiple Actor instances can be active at the same time.
LoekD
  • 11,402
  • 17
  • 27