Akka Cluster provides a fault-tolerant, elastic, decentralized peer-to-peer cluster with no single point of failure (SPOF) or single point of bottleneck (SPOB). It implements a Dynamo-style system using gossip protocols, automatic failure detection, automatic partitioning [*], handoff [*], and cluster rebalancing [*]. But with some differences due to the fact that it is not just managing passive data, but actors - active, sometimes stateful, components that also have requirements on message ordering, the number of active instances in the cluster, etc.
[*] Not Implemented Yet
- Actor partitioning
- Actor handoff
- Actor rebalancing
- Stateful actor replication
Your new post is loading...
This looks awesome. And very promising since the "not implemented yet".