2012-01-31 15:00:46 +01:00
|
|
|
######################################
|
|
|
|
|
# Akka Cluster Reference Config File #
|
|
|
|
|
######################################
|
|
|
|
|
|
2012-02-21 14:39:08 -06:00
|
|
|
# This is the reference config file that contains all the default settings.
|
2012-01-31 15:00:46 +01:00
|
|
|
# Make your edits/overrides in your application.conf.
|
|
|
|
|
|
|
|
|
|
akka {
|
|
|
|
|
|
|
|
|
|
cluster {
|
|
|
|
|
seed-nodes = []
|
|
|
|
|
seed-node-connection-timeout = 30s
|
|
|
|
|
max-time-to-retry-joining-cluster = 30s
|
|
|
|
|
|
|
|
|
|
# accrual failure detection config
|
|
|
|
|
failure-detector {
|
|
|
|
|
|
|
|
|
|
# defines the failure detector threshold
|
|
|
|
|
# A low threshold is prone to generate many wrong suspicions but ensures
|
|
|
|
|
# a quick detection in the event of a real crash. Conversely, a high
|
|
|
|
|
# threshold generates fewer mistakes but needs more time to detect
|
|
|
|
|
# actual crashes
|
|
|
|
|
threshold = 8
|
|
|
|
|
|
|
|
|
|
max-sample-size = 1000
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gossip {
|
2012-02-09 20:40:09 +01:00
|
|
|
initial-delay = 5s
|
2012-01-31 15:00:46 +01:00
|
|
|
frequency = 1s
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|