|
|
|
|
|
by 29athrowaway
1986 days ago
|
|
I used Akka cluster many years ago. One of the problems I encountered was that to finding actors in remote actor systems. i.e.: you have a unique actor responsible for X, living somewhere in your cluster and you need to know its name as well as the IP address of the actor system where it is running. A message queue solves this problem, but that was not the approach I took. My solution was to implement an actor discovery system on top of Zookeeper. Using that, I could have a cluster-wide unique actors. |
|