Corrected wrong information regarding Unreachable (#249)

* Updated the Wire Serializer section

Added a note about Hyperion

* Corrected wrong information regarding Unreachable

* revert note
This commit is contained in:
Arjen Smits 2017-07-26 16:33:30 +02:00 коммит произвёл Aaron Stannard
Родитель 548767ea62
Коммит 58f3f09e4c
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -199,8 +199,7 @@ Each role within the cluster also has a leader, just for that role. Its primary
### Reachability
Nodes send each other <a href="https://en.wikipedia.org/wiki/Heartbeat_(computing)">heartbeats</a> on an ongoing basis. If a node misses enough heartbeats, this will trigger `unreachable` gossip messages from its peers.
If the gossip from a quorum of cluster nodes agree that the node is unreachable ("convergence"), the leader will mark it as down and begin removing the node from the cluster.
Even if the entire cluster agrees that a node is unreachable, the leader will not take any action. If a node is permanently unreachable, you will have to Down it. You can do this by writing a custom IDowningProvider or using the `cluster.auto-down-unreachable-after` setting.
## Location Transparency
[Location transparency](concepts/location-transparency) is the underlying principle powering all of Akka.Remote and Akka.Cluster. The key point is that in a cluster, it's entirely possible that the actors you interface with to do work can be living on any node in the cluster... and you don't have to worry about which one.