Hi,
If I have a cluster with two nodes. If an external message goes into one node, can I find the actor in another node which created by a early message routed to that node?
Thanks.
Hi,
If I have a cluster with two nodes. If an external message goes into one node, can I find the actor in another node which created by a early message routed to that node?
Thanks.
Read the documentation about Cluster Sharding (https://doc.akka.io/docs/akka/current/cluster-sharding.html); sharding solves this problem for you, at least so long as the actors have a stable identity.
Thanks, Now I know it now.