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