Enable Split-Brain Resolver
[controller.git] / opendaylight / md-sal / sal-clustering-config / src / main / resources / initial / akka.conf
1
2 odl-cluster-data {
3   akka {
4     remote {
5       artery {
6         enabled = on
7         transport = tcp
8         canonical.hostname = "127.0.0.1"
9         canonical.port = 2550
10       }
11     }
12
13     cluster {
14       # Using artery.
15       seed-nodes = ["akka://opendaylight-cluster-data@127.0.0.1:2550"]
16
17       roles = [
18         "member-1"
19       ]
20
21       # when under load we might trip a false positive on the failure detector
22       # failure-detector {
23         # heartbeat-interval = 4 s
24         # acceptable-heartbeat-pause = 16s
25       # }
26     }
27
28     persistence {
29       # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by
30       # modifying the following two properties. The directory location specified may be a relative or absolute path. 
31       # The relative path is always relative to KARAF_HOME.
32
33       # snapshot-store.local.dir = "target/snapshots"
34
35       # Use lz4 compression for LocalSnapshotStore snapshots
36       snapshot-store.local.use-lz4-compression = false
37       # Size of blocks for lz4 compression: 64KB, 256KB, 1MB or 4MB
38       snapshot-store.local.lz4-blocksize = 256KB
39     }
40     disable-default-actor-system-quarantined-event-handling = "false"
41   }
42 }