8e310815faed92617d626d14a5433bd61664a00b
[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       netty.tcp {
26         hostname = "127.0.0.1"
27         port = 2550
28       }
29     }
30
31     cluster {
32       seed-nodes = ["akka.tcp://opendaylight-rpc@127.0.0.1:2550"]
33
34       auto-down-unreachable-after = 10s
35     }
36   }
37 }
38 unit-test{
39   akka {
40     loglevel = "DEBUG"
41     #loggers = ["akka.event.slf4j.Slf4jLogger"]
42   }
43   bounded-mailbox {
44     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
45     #mailbox-capacity is specified in config subsystem
46     mailbox-capacity = 1000
47     mailbox-push-timeout-time = 10ms
48   }
49 }
50
51 memberA{
52   bounded-mailbox {
53     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
54     mailbox-capacity = 1000
55     mailbox-push-timeout-time = 10ms
56   }
57   akka {
58     loglevel = "INFO"
59     #loggers = ["akka.event.slf4j.Slf4jLogger"]
60     actor {
61       provider = "akka.cluster.ClusterActorRefProvider"
62       debug {
63         #lifecycle = on
64       }
65     }
66     remote {
67       log-received-messages = off
68       log-sent-messages = off
69
70       log-remote-lifecycle-events = off
71       netty.tcp {
72         hostname = "127.0.0.1"
73         port = 2551
74       }
75     }
76
77     cluster {
78       seed-nodes = ["akka.tcp://opendaylight-rpc@127.0.0.1:2551"]
79
80       auto-down-unreachable-after = 10s
81     }
82   }
83 }
84 memberB{
85   bounded-mailbox {
86     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
87     mailbox-capacity = 1000
88     mailbox-push-timeout-time = 10ms
89   }
90   akka {
91     loglevel = "INFO"
92     #loggers = ["akka.event.slf4j.Slf4jLogger"]
93
94     actor {
95       provider = "akka.cluster.ClusterActorRefProvider"
96       debug {
97         #lifecycle = on
98       }
99     }
100     remote {
101       log-received-messages = off
102       log-sent-messages = off
103
104       log-remote-lifecycle-events = off
105       netty.tcp {
106         hostname = "127.0.0.1"
107         port = 2552
108       }
109     }
110
111     cluster {
112       seed-nodes = ["akka.tcp://opendaylight-rpc@127.0.0.1:2551"]
113
114       auto-down-unreachable-after = 10s
115     }
116   }
117 }
118 memberC{
119   bounded-mailbox {
120     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
121     mailbox-capacity = 1000
122     mailbox-push-timeout-time = 10ms
123   }
124   akka {
125     loglevel = "INFO"
126     #loggers = ["akka.event.slf4j.Slf4jLogger"]
127     actor {
128       provider = "akka.cluster.ClusterActorRefProvider"
129       debug {
130         #lifecycle = on
131       }
132     }
133     remote {
134       log-received-messages = off
135       log-sent-messages = off
136
137       log-remote-lifecycle-events = off
138       netty.tcp {
139         hostname = "127.0.0.1"
140         port = 2553
141       }
142     }
143
144     cluster {
145       seed-nodes = ["akka.tcp://opendaylight-rpc@127.0.0.1:2551"]
146
147       auto-down-unreachable-after = 10s
148     }
149   }
150 }
151