Bug 5329: Add factory akka.conf
[controller.git] / opendaylight / md-sal / sal-clustering-config / src / main / resources / initial / akka.conf
1
2 odl-cluster-data {
3   akka {
4     remote {
5       netty.tcp {
6         hostname = "127.0.0.1"
7         port = 2550
8       }
9     }
10
11     cluster {
12       seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"]
13
14       roles = [
15         "member-1"
16       ]
17
18     }
19     
20     persistence {
21       # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by
22       # modifying the following two properties. The directory location specified may be a relative or absolute path. 
23       # The relative path is always relative to KARAF_HOME.
24
25       # snapshot-store.local.dir = "target/snapshots"
26       # journal.leveldb.dir = "target/journal"
27
28       journal {
29         leveldb {
30           # Set native = off to use a Java-only implementation of leveldb.
31           # Note that the Java-only version is not currently considered by Akka to be production quality.
32
33           # native = off
34         }
35       }
36     }
37   }
38 }