Remove remnants of leveldb configuration
[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 = off
7         canonical.hostname = "127.0.0.1"
8         canonical.port = 2550
9       }
10       netty.tcp {
11         hostname = "127.0.0.1"
12         port = 2550
13       }
14       # when under load we might trip a false positive on the failure detector
15       # transport-failure-detector {
16         # heartbeat-interval = 4 s
17         # acceptable-heartbeat-pause = 16s
18       # }
19     }
20
21     cluster {
22       # Remove ".tcp" when using artery.
23       seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"]
24
25       roles = [
26         "member-1"
27       ]
28
29     }
30
31     persistence {
32       # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by
33       # modifying the following two properties. The directory location specified may be a relative or absolute path. 
34       # The relative path is always relative to KARAF_HOME.
35
36       # snapshot-store.local.dir = "target/snapshots"
37     }
38   }
39 }