Merge "Bug 1593 - Flow Statistics manager is updating store with incorrect key Statis...
[controller.git] / opendaylight / md-sal / sal-clustering-config / src / main / resources / initial / akka.conf
1
2 odl-cluster-data {
3   bounded-mailbox {
4     mailbox-type = "org.opendaylight.controller.common.actor.MeteredBoundedMailbox"
5     mailbox-capacity = 1000
6     mailbox-push-timeout-time = 100ms
7   }     
8   akka {
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 = "<CHANGE_ME>"
25         port = 2550
26         maximum-frame-size = 419430400
27         send-buffer-size = 52428800
28         receive-buffer-size = 52428800
29       }
30     }
31
32     cluster {
33       seed-nodes = ["akka.tcp://opendaylight-cluster-data@<CHANGE_SEED_IP>: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.common.actor.MeteredBoundedMailbox"
43     mailbox-capacity = 1000
44     mailbox-push-timeout-time = 100ms
45   }
46   akka {
47     actor {
48       provider = "akka.cluster.ClusterActorRefProvider"
49
50     }
51     remote {
52       log-remote-lifecycle-events = off
53       netty.tcp {
54         hostname = "<CHANGE_ME>"
55         port = 2551
56       }
57     }
58
59     cluster {
60       seed-nodes = ["akka.tcp://opendaylight-cluster-rpc@<CHANGE_SEED_IP>:2551"]
61
62       auto-down-unreachable-after = 10s
63     }
64   }
65 }