How does Akka Cluster achieve fault tolerance?
Through self-healing mechanisms like :
* Membership monitoring via heartbeat messages.
* Automatic rebalancing of actors when nodes fail (Cluster Sharding).
* Gossip protocol for decentralized communication.
* Partition handling to avoid split-brain scenarios.