Reputation: 272
I have question about Akka cluster deployment best practices.
Is it recommended to have nodes each deployed in different data center (for example one in Europe and one in US, etc)?
The reason for that is to reduce network latency for cluster clients accessing the cluster. I think that, such a nodes should respond faster to nearby clients.
Thanks for responses.
Upvotes: 1
Views: 420
Reputation: 2441
Just came across this thread. I would like to add a couple of interesting seminars to answer the question:
And just a general seminar: A Comprehensive Overview Of A To Z With Akka
Upvotes: 0
Reputation: 646
It is not recommended that you have an Akka cluster deployed with members spread across different data centres. Instead you should deploy a separate Akka cluster in each of the data centres, and if you need to communicate between them you should use something like Cluster Client.
Upvotes: 1