Gossip based eventually consistent RPC Registry.
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / test / resources / application.conf
1 odl-cluster{
2   akka {
3     loglevel = "INFO"
4     #log-config-on-start = on
5
6     actor {
7       provider = "akka.cluster.ClusterActorRefProvider"
8       debug{
9         #autoreceive = on
10         #lifecycle = on
11
12       }
13     }
14     remote {
15       log-received-messages = on
16       log-sent-messages = on
17
18       log-remote-lifecycle-events = off
19       netty.tcp {
20         hostname = "localhost"
21         port = 2551
22       }
23     }
24
25     cluster {
26       seed-nodes = ["akka.tcp://opendaylight-rpc@localhost:2551"]
27
28       auto-down-unreachable-after = 10s
29     }
30   }
31 }
32 unit-test{
33   akka {
34     loglevel = "INFO"
35
36     actor {
37       provider = "akka.cluster.ClusterActorRefProvider"
38     }
39   }
40 }
41
42 memberA{
43   akka {
44     loglevel = "INFO"
45
46     actor {
47       provider = "akka.cluster.ClusterActorRefProvider"
48     }
49     remote {
50       log-received-messages = off
51       log-sent-messages = off
52
53       log-remote-lifecycle-events = off
54       netty.tcp {
55         hostname = "localhost"
56         port = 2551
57       }
58     }
59
60     cluster {
61       seed-nodes = ["akka.tcp://opendaylight-rpc@localhost:2551"]
62
63       auto-down-unreachable-after = 10s
64     }
65   }
66 }
67 memberB{
68   akka {
69     loglevel = "INFO"
70
71     actor {
72       provider = "akka.cluster.ClusterActorRefProvider"
73     }
74     remote {
75       log-received-messages = off
76       log-sent-messages = off
77
78       log-remote-lifecycle-events = off
79       netty.tcp {
80         hostname = "localhost"
81         port = 2552
82       }
83     }
84
85     cluster {
86       seed-nodes = ["akka.tcp://opendaylight-rpc@localhost:2551"]
87
88       auto-down-unreachable-after = 10s
89     }
90   }
91 }
92 memberC{
93   akka {
94     loglevel = "INFO"
95
96     actor {
97       provider = "akka.cluster.ClusterActorRefProvider"
98     }
99     remote {
100       log-received-messages = off
101       log-sent-messages = off
102
103       log-remote-lifecycle-events = off
104       netty.tcp {
105         hostname = "localhost"
106         port = 2553
107       }
108     }
109
110     cluster {
111       seed-nodes = ["akka.tcp://opendaylight-rpc@localhost:2551"]
112
113       auto-down-unreachable-after = 10s
114     }
115   }
116 }