Is it possible to create an Akka cluster with Actors across the internet? And if not are there any solutions with akka?
As long as the nodes of the cluster are able to open connections to each other, the cluster can form.
Note that care might need to be taken with failure detection and split-brain resolution if there’s a large variation in network distance between nodes.
Thanks for your reply. Much appreciated
Another options could be the usage of Akka Distributed Cluster: Akka Distributed Cluster.
Here, you technically have different Akka clusters (per location), but you have them connected to form a logical application.