I would like to be able to create an actor from one Akka node of a cluster, in a way that the actor will live on regardless of whether the node that created it is running or not.
This is the scenario I am trying to handle:
At the moment, when Node A terminates, the actors it created are lost.
Could you please let me know if this is possible for an actor to outlive the node/member that created it.
Thank you.
If what you want is just that your actor outlive to a node termination probably the best option for you would be having no care about their physical location of that actor in the cluster and in that case scenario you can make use of two options either Cluster Sharding or Cluster Singleton in the case you have to have exactly one actor of that type you are mentioning.