X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-config%2Fsrc%2Fmain%2Fresources%2Finitial%2Fakka.conf;h=9da6a3b5a41a025fd1a3ffcf30d42789701a6bc1;hb=94374bc65cc6c57f1d2e77e1cd15902bb69d4fea;hp=5a2116b50f92070687736329e95441a246ed49b0;hpb=3671ac415342e718f34c16d272647abd15b742c1;p=controller.git diff --git a/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf b/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf index 5a2116b50f..9da6a3b5a4 100644 --- a/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf +++ b/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf @@ -1,12 +1,19 @@ odl-cluster-data { bounded-mailbox { - mailbox-type = "org.opendaylight.controller.common.actor.MeteredBoundedMailbox" + mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox" mailbox-capacity = 1000 mailbox-push-timeout-time = 100ms - } + } + + metric-capture-enabled = true + akka { + loglevel = "INFO" + loggers = ["akka.event.slf4j.Slf4jLogger"] + actor { + provider = "akka.cluster.ClusterActorRefProvider" serializers { java = "akka.serialization.JavaSerializer" @@ -32,7 +39,7 @@ odl-cluster-data { cluster { seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"] - auto-down-unreachable-after = 10s + auto-down-unreachable-after = 300s roles = [ "member-1" @@ -44,11 +51,17 @@ odl-cluster-data { odl-cluster-rpc { bounded-mailbox { - mailbox-type = "org.opendaylight.controller.common.actor.MeteredBoundedMailbox" + mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox" mailbox-capacity = 1000 mailbox-push-timeout-time = 100ms } + + metric-capture-enabled = true + akka { + loglevel = "INFO" + loggers = ["akka.event.slf4j.Slf4jLogger"] + actor { provider = "akka.cluster.ClusterActorRefProvider" @@ -58,13 +71,16 @@ odl-cluster-rpc { netty.tcp { hostname = "127.0.0.1" port = 2551 + maximum-frame-size = 419430400 + send-buffer-size = 52428800 + receive-buffer-size = 52428800 } } cluster { - seed-nodes = ["akka.tcp://opendaylight-cluster-rpc@127.0.0.1:2551"] + seed-nodes = ["akka.tcp://odl-cluster-rpc@127.0.0.1:2551"] - auto-down-unreachable-after = 10s + auto-down-unreachable-after = 300s } } }