31e54601dc6bf5e79b9103e2cdcb0d1dba5831be
[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         canonical.hostname = "127.0.0.1"
8         canonical.port = 2550
9       }
10     }
11
12     cluster {
13       seed-nodes = ["akka://opendaylight-cluster-data@127.0.0.1:2550"]
14
15       roles = [
16         "member-1"
17       ]
18
19     }
20     
21     persistence {
22       # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by
23       # modifying the following two properties. The directory location specified may be a relative or absolute path. 
24       # The relative path is always relative to KARAF_HOME.
25
26       # snapshot-store.local.dir = "target/snapshots"
27       # journal.leveldb.dir = "target/journal"
28
29       journal {
30         leveldb {
31           # Set native = off to use a Java-only implementation of leveldb.
32           # Note that the Java-only version is not currently considered by Akka to be production quality.
33
34           # native = off
35         }
36       }
37     }
38   }
39 }