X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-config%2Fsrc%2Fmain%2Fresources%2Finitial%2Fakka.conf;h=9977babe350fa503bba0356c74eb109fccadb172;hp=8d65e59dfe1352db98622e85cc4d520fe261755e;hb=bcb714c3684edcb0afeac1e5649fcdeec4ee7fae;hpb=92cd266a60a0dd246324654d456b5068207d3037 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 8d65e59dfe..9977babe35 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,56 +1,22 @@ 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 { - loglevel = "INFO" - loggers = ["akka.event.slf4j.Slf4jLogger"] - - actor { - provider = "akka.cluster.ClusterActorRefProvider" - serializers { - java = "akka.serialization.JavaSerializer" - proto = "akka.remote.serialization.ProtobufSerializer" - } - - serialization-bindings { - "com.google.protobuf.Message" = proto - } - - default-dispatcher { - # Setting throughput to 1 makes the dispatcher fair. It processes 1 message from - # the mailbox before moving on to the next mailbox - throughput = 1 - } - - default-mailbox { - # When not using a BalancingDispatcher it is recommended that we use the SingleConsumerOnlyUnboundedMailbox - # as it is the most efficient for multiple producer/single consumer use cases - mailbox-type="akka.dispatch.SingleConsumerOnlyUnboundedMailbox" - } - } remote { - log-remote-lifecycle-events = off + artery { + enabled = off + canonical.hostname = "127.0.0.1" + canonical.port = 2550 + } netty.tcp { hostname = "127.0.0.1" port = 2550 - maximum-frame-size = 419430400 - send-buffer-size = 52428800 - receive-buffer-size = 52428800 } } cluster { + # Remove ".tcp" when using artery. seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"] - auto-down-unreachable-after = 300s - roles = [ "member-1" ] @@ -65,42 +31,14 @@ odl-cluster-data { # snapshot-store.local.dir = "target/snapshots" # journal.leveldb.dir = "target/journal" - } - } -} - -odl-cluster-rpc { - bounded-mailbox { - mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox" - mailbox-capacity = 1000 - mailbox-push-timeout-time = 100ms - } - - metric-capture-enabled = true + journal { + leveldb { + # Set native = off to use a Java-only implementation of leveldb. + # Note that the Java-only version is not currently considered by Akka to be production quality. - akka { - loglevel = "INFO" - loggers = ["akka.event.slf4j.Slf4jLogger"] - - actor { - provider = "akka.cluster.ClusterActorRefProvider" - - } - remote { - log-remote-lifecycle-events = off - netty.tcp { - hostname = "127.0.0.1" - port = 2551 - maximum-frame-size = 419430400 - send-buffer-size = 52428800 - receive-buffer-size = 52428800 + # native = off + } } } - - cluster { - seed-nodes = ["akka.tcp://odl-cluster-rpc@127.0.0.1:2551"] - - auto-down-unreachable-after = 300s - } } }