Raja Rajendraprasath
Raja Rajendraprasath

Reputation: 222

How many actors can be created in service fabric cluster nodes

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

Upvotes: 0

Views: 439

Answers (1)

LoekD
LoekD

Reputation: 11470

  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.

Upvotes: 2

Related Questions