[CCSDK-1985]GR Toolkit Refactor
[ccsdk/sli/plugins.git] / grToolkit / provider / src / test / resources / three / akka.conf
1 # ============LICENSE_START=======================================================
2 # openECOMP : SDN-C
3 # ================================================================================
4 # Copyright (C) 2019 AT&T Intellectual Property. All rights
5 #                       reserved.
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=========================================================
19
20 odl-cluster-data {
21   akka {
22     remote {
23       artery {
24         enabled = off
25         canonical.hostname = "127.0.0.1"
26         canonical.port = 2550
27       }
28       netty.tcp {
29         hostname = "127.0.0.1"
30         port = 2550
31       }
32       # when under load we might trip a false positive on the failure detector
33       # transport-failure-detector {
34         # heartbeat-interval = 4 s
35         # acceptable-heartbeat-pause = 16s
36       # }
37     }
38
39     cluster {
40       # Remove ".tcp" when using artery.
41       seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550", "akka.tcp://opendaylight-cluster-data@127.0.0.2:2550", "akka.tcp://opendaylight-cluster-data@127.0.0.3:2550"]
42
43       roles = [
44         "member-1"
45       ]
46
47     }
48
49     persistence {
50       # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by
51       # modifying the following two properties. The directory location specified may be a relative or absolute path.
52       # The relative path is always relative to KARAF_HOME.
53
54       # snapshot-store.local.dir = "target/snapshots"
55       # journal.leveldb.dir = "target/journal"
56
57       journal {
58         leveldb {
59           # Set native = off to use a Java-only implementation of leveldb.
60           # Note that the Java-only version is not currently considered by Akka to be production quality.
61
62           # native = off
63         }
64       }
65     }
66   }
67 }