Created
November 3, 2012 17:39
-
-
Save helena/4008078 to your computer and use it in GitHub Desktop.
Here are some of the more interesting configurable cluster properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Here are some of the more interesting configurable cluster properties | |
# that enable you to maintain health of your system | |
# Note: The provider to use | |
akka.actor.provider = akka.cluster.ClusterActorRefProvider | |
akka.cluster { | |
# if after this duration no heartbeat has been received, you have a problem | |
failure-detector.acceptable-heartbeat-pause = 5s | |
# how often the node publishes heartbeats | |
failure-detector.heartbeat-interval = 1s | |
# how often the nodes share information with each other | |
# and updates to overall cluster state occur | |
gossip-interval = 500 ms | |
# how often the reaper will move unreachable nodes from the node ring | |
unreachable-nodes-reaper-interval = 1s | |
# tell the cluster when a joining node has failed | |
# if it has not become a member by this time | |
join-timeout = 60s | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment