blob: 8440a9de567056fe2b1239503857f60599adc78c [file] [log] [blame]
Timoney, Dan (dt5972)58774772019-08-21 16:50:54 -04001
2odl-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 use-passive-connections = off
16 # when under load we might trip a false positive on the failure detector
17 # transport-failure-detector {
18 # heartbeat-interval = 4 s
19 # acceptable-heartbeat-pause = 16s
20 # }
21 }
22
23 actor {
24 debug {
25 autoreceive = on
26 lifecycle = on
27 unhandled = on
28 fsm = on
29 event-stream = on
30 }
31 }
32
33 cluster {
34 # Remove ".tcp" when using artery.
35 seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"]
36
37 seed-node-timeout = {{.Values.config.odl.akka.seedNodeTimeout}}
38
39 roles = ["member-1"]
40
41 }
42
43 persistence {
44 # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by
45 # modifying the following two properties. The directory location specified may be a relative or absolute path.
46 # The relative path is always relative to KARAF_HOME.
47
48 # snapshot-store.local.dir = "target/snapshots"
49 # journal.leveldb.dir = "target/journal"
50
51 journal {
52 leveldb {
53 # Set native = off to use a Java-only implementation of leveldb.
54 # Note that the Java-only version is not currently considered by Akka to be production quality.
55
56 # native = off
57 }
58
59 journal-plugin-fallback {
60 circuit-breaker {
61 max-failures = {{.Values.config.odl.akka.circuitBreaker.maxFailures}}
62 call-timeout = {{.Values.config.odl.akka.circuitBreaker.callTimeout}}
63 reset-timeout = {{.Values.config.odl.akka.circuitBreaker.resetTimeout}}
64 }
65 recovery-event-timeout = {{.Values.config.odl.akka.recoveryEventTimeout}}
66 }
67
68 snapshot-store-plugin-fallback {
69 circuit-breaker {
70 max-failures = {{.Values.config.odl.akka.circuitBreaker.maxFailures}}
71 call-timeout = {{.Values.config.odl.akka.circuitBreaker.callTimeout}}
72 reset-timeout = {{.Values.config.odl.akka.circuitBreaker.resetTimeout}}
73 }
74 recovery-event-timeout = {{.Values.config.odl.akka.recoveryEventTimeout}}
75 }
76 }
77 }
78 }
79}
80