Use memory-mapped segmented journal by default
[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       # when under load we might trip a false positive on the failure detector
12       # transport-failure-detector {
13         # heartbeat-interval = 4 s
14         # acceptable-heartbeat-pause = 16s
15       # }
16     }
17
18     cluster {
19       # Using artery.
20       seed-nodes = ["akka://opendaylight-cluster-data@127.0.0.1:2550"]
21
22       roles = [
23         "member-1"
24       ]
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 }