Merge "fixed license issue"
[ccsdk/features.git] / sdnr / wt / websocketmanager2 / provider / src / test / resources / akka-cluster.cfg
1 odl-cluster-data {
2   akka {
3     remote {
4       artery {
5         enabled = off
6         canonical.hostname = "192.168.178.143"
7         canonical.port = 2550
8       }
9       netty.tcp {
10         hostname = "192.168.178.143"
11         port = 2550
12       }
13       # when under load we might trip a false positive on the failure detector
14       # transport-failure-detector {
15         # heartbeat-interval = 4 s
16         # acceptable-heartbeat-pause = 16s
17       # }
18     }
19
20     cluster {
21       # Remove ".tcp" when using artery.
22       seed-nodes = ["akka.tcp://opendaylight-cluster-data@192.168.178.142:2550",
23                                 "akka.tcp://opendaylight-cluster-data@192.168.178.143:2550",
24                                 "akka.tcp://opendaylight-cluster-data@192.168.178.144:2550",
25                                 "akka.tcp://opendaylight-cluster-data@192.168.178.145:2550"]
26
27       roles = ["member-2"]
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       # journal.leveldb.dir = "target/journal"
38
39       journal {
40         leveldb {
41           # Set native = off to use a Java-only implementation of leveldb.
42           # Note that the Java-only version is not currently considered by Akka to be production quality.
43
44           # native = off
45         }
46       }
47     }
48   }
49 }