X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fresources%2Fapplication.conf;h=2449976a251b349a052638a697ba0ce8225d9c5b;hp=daac89c4c8adaef39047034138a8318e639f54c8;hb=c3607fd866e5cfde0d4806820981fe95ad29392c;hpb=f4b583dd481d8db60c894690a6c9189922f360a9 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/resources/application.conf b/opendaylight/md-sal/sal-distributed-datastore/src/main/resources/application.conf index daac89c4c8..2449976a25 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/resources/application.conf +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/resources/application.conf @@ -1,6 +1,15 @@ odl-cluster-data { + bounded-mailbox { + mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox" + mailbox-capacity = 1000 + mailbox-push-timeout-time = 100ms + } + + metric-capture-enabled = true + akka { + loggers = ["akka.event.slf4j.Slf4jLogger"] cluster { roles = [ "member-1" @@ -11,11 +20,12 @@ odl-cluster-data { serializers { java = "akka.serialization.JavaSerializer" proto = "akka.remote.serialization.ProtobufSerializer" + readylocal = "org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransactionSerializer" } serialization-bindings { "com.google.protobuf.Message" = proto - + "org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransaction" = readylocal } } remote { @@ -23,9 +33,9 @@ odl-cluster-data { netty.tcp { hostname = "127.0.0.1" port = 2550 - maximum-frame-size = 2097152 - send-buffer-size = 52428800 - receive-buffer-size = 52428800 + maximum-frame-size = 419430400 + send-buffer-size = 52428800 + receive-buffer-size = 52428800 } } @@ -39,6 +49,7 @@ odl-cluster-data { odl-cluster-rpc { akka { + loggers = ["akka.event.slf4j.Slf4jLogger"] actor { provider = "akka.cluster.ClusterActorRefProvider"