Checkstyle compliant src/main|test/resources
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / resources / application.conf
1
2 odl-cluster-data {
3   akka {
4     cluster {
5         roles = [
6           "member-1"
7         ]
8     }
9     actor {
10       provider = "akka.cluster.ClusterActorRefProvider"
11       serializers {
12                 java = "akka.serialization.JavaSerializer"
13                 proto = "akka.remote.serialization.ProtobufSerializer"
14               }
15
16               serialization-bindings {
17                   "com.google.protobuf.Message" = proto
18
19               }
20     }
21     remote {
22       log-remote-lifecycle-events = off
23       netty.tcp {
24         hostname = "127.0.0.1"
25         port = 2550
26         maximum-frame-size = 2097152
27         send-buffer-size = 52428800
28         receive-buffer-size = 52428800
29       }
30     }
31
32     cluster {
33       seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"]
34
35       auto-down-unreachable-after = 10s
36     }
37   }
38 }
39
40 odl-cluster-rpc {
41   bounded-mailbox {
42     mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
43     mailbox-capacity = 1000
44     mailbox-push-timeout-time = 100ms
45   }
46
47   akka {
48     actor {
49       provider = "akka.cluster.ClusterActorRefProvider"
50     }
51     remote {
52       log-remote-lifecycle-events = off
53       netty.tcp {
54         hostname = "127.0.0.1"
55         port = 2551
56       }
57     }
58
59     cluster {
60       seed-nodes = ["akka.tcp://opendaylight-cluster-rpc@127.0.0.1:2551"]
61       auto-down-unreachable-after = 10s
62     }
63   }
64 }