Bump akka to 2.6.12
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / test / resources / application.conf
1 odl-cluster-rpc {
2   bounded-mailbox {
3     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
4     mailbox-capacity = 1000
5     mailbox-push-timeout-time = 10ms
6   }
7
8   akka {
9     loglevel = "INFO"
10     #log-config-on-start = on
11
12     actor {
13       provider = "akka.cluster.ClusterActorRefProvider"
14       debug{
15         #autoreceive = on
16         #lifecycle = on
17
18       }
19     }
20     remote {
21       log-received-messages = on
22       log-sent-messages = on
23
24       log-remote-lifecycle-events = off
25       artery {
26         enabled = on
27         canonical.hostname = "127.0.0.1"
28         canonical.port = 2550
29       }
30     }
31
32     cluster {
33       seed-nodes = ["akka://opendaylight-rpc@127.0.0.1:2550"]
34     }
35   }
36 }
37 unit-test {
38   akka {
39     loglevel = "DEBUG"
40     #loggers = ["akka.event.slf4j.Slf4jLogger"]
41     persistence.snapshot-store.plugin = "in-memory-snapshot-store"
42     persistence.journal.plugin = "in-memory-journal"
43   }
44   bounded-mailbox {
45     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
46     #mailbox-capacity is specified in config subsystem
47     mailbox-capacity = 1000
48     mailbox-push-timeout-time = 10ms
49   }
50
51   in-memory-journal {
52     class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
53   }
54
55   in-memory-snapshot-store {
56     # Class name of the plugin.
57     class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
58     # Dispatcher for the plugin actor.
59     plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
60   }
61 }
62
63 memberA {
64   bounded-mailbox {
65     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
66     mailbox-capacity = 1000
67     mailbox-push-timeout-time = 10ms
68   }
69   akka {
70     loglevel = "INFO"
71     loggers = ["akka.event.slf4j.Slf4jLogger"]
72
73     persistence.snapshot-store.plugin = "in-memory-snapshot-store"
74     persistence.journal.plugin = "in-memory-journal"
75     actor {
76       provider = "akka.cluster.ClusterActorRefProvider"
77       debug {
78         #lifecycle = on
79       }
80     }
81     remote {
82       log-received-messages = off
83       log-sent-messages = off
84
85       log-remote-lifecycle-events = off
86       artery {
87         enabled = on
88         canonical.hostname = "127.0.0.1"
89         canonical.port = 2551
90       }
91     }
92
93     cluster {
94       seed-nodes = ["akka://opendaylight-rpc@127.0.0.1:2551"]
95     }
96   }
97   in-memory-journal {
98     class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
99   }
100
101   in-memory-snapshot-store {
102     # Class name of the plugin.
103     class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
104     # Dispatcher for the plugin actor.
105     plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
106   }
107 }
108 memberB {
109   bounded-mailbox {
110     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
111     mailbox-capacity = 1000
112     mailbox-push-timeout-time = 10ms
113   }
114   akka {
115     loglevel = "INFO"
116     loggers = ["akka.event.slf4j.Slf4jLogger"]
117
118     persistence.snapshot-store.plugin = "in-memory-snapshot-store"
119     persistence.journal.plugin = "in-memory-journal"
120
121     actor {
122       provider = "akka.cluster.ClusterActorRefProvider"
123       debug {
124         #lifecycle = on
125       }
126     }
127     remote {
128       log-received-messages = off
129       log-sent-messages = off
130
131       log-remote-lifecycle-events = off
132       artery {
133         enabled = on
134         canonical.hostname = "127.0.0.1"
135         canonical.port = 2552
136       }
137     }
138
139     cluster {
140       seed-nodes = ["akka://opendaylight-rpc@127.0.0.1:2551"]
141     }
142   }
143   in-memory-journal {
144     class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
145   }
146
147   in-memory-snapshot-store {
148     # Class name of the plugin.
149     class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
150     # Dispatcher for the plugin actor.
151     plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
152   }
153 }
154 memberC {
155   bounded-mailbox {
156     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
157     mailbox-capacity = 1000
158     mailbox-push-timeout-time = 10ms
159   }
160   akka {
161     loglevel = "INFO"
162     loggers = ["akka.event.slf4j.Slf4jLogger"]
163
164     persistence.snapshot-store.plugin = "in-memory-snapshot-store"
165     persistence.journal.plugin = "in-memory-journal"
166
167     actor {
168       provider = "akka.cluster.ClusterActorRefProvider"
169       debug {
170         #lifecycle = on
171       }
172     }
173     remote {
174       log-received-messages = off
175       log-sent-messages = off
176
177       log-remote-lifecycle-events = off
178       artery {
179         enabled = on
180         canonical.hostname = "127.0.0.1"
181         canonical.port = 2553
182       }
183     }
184
185     cluster {
186       seed-nodes = ["akka://opendaylight-rpc@127.0.0.1:2551"]
187     }
188   }
189   in-memory-journal {
190     class = "org.opendaylight.controller.cluster.raft.utils.InMemoryJournal"
191   }
192
193   in-memory-snapshot-store {
194     # Class name of the plugin.
195     class = "org.opendaylight.controller.cluster.raft.utils.InMemorySnapshotStore"
196     # Dispatcher for the plugin actor.
197     plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
198   }
199 }
200