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%2Ffactory-akka.conf;h=34b309b0b162d77f905bfede823f34f05711cd47;hp=eb4903e5527852d1f8d9286f0c69b6519147a634;hb=52fb7d830e43a9849c728c7b0d36470afe686fb5;hpb=6e76bb44514ea79524f46ff283ea0d0d4ad8c7f8 diff --git a/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/factory-akka.conf b/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/factory-akka.conf index eb4903e552..34b309b0b1 100644 --- a/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/factory-akka.conf +++ b/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/factory-akka.conf @@ -2,8 +2,8 @@ odl-cluster-data { bounded-mailbox { mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox" - mailbox-capacity = 1000 - mailbox-push-timeout-time = 100ms + mailbox-capacity = 5000 + mailbox-push-timeout-time = 10ms } metric-capture-enabled = true @@ -28,22 +28,48 @@ odl-cluster-data { throughput = 1 } + serialization-dispatcher { + type = Dispatcher + executor = "fork-join-executor" + fork-join-executor { + # Min number of threads to cap factor-based parallelism number to + parallelism-min = 2 + # Parallelism (threads) ... ceil(available processors * factor) + parallelism-factor = 2.0 + # Max number of threads to cap factor-based parallelism number to + parallelism-max = 15 + } + throughput = 1 + } + + shard-dispatcher { + type = Dispatcher + executor = "default-executor" + + # We use a ControlAwareMailbox so that raft messages that implement ControlMessage + # are given higher priority. + mailbox-type = "org.opendaylight.controller.cluster.common.actor.UnboundedDequeBasedControlAwareMailbox" + } + akka { loglevel = "INFO" loggers = ["akka.event.slf4j.Slf4jLogger"] logger-startup-timeout = 300s actor { + warn-about-java-serializer-usage = off provider = "akka.cluster.ClusterActorRefProvider" serializers { java = "akka.serialization.JavaSerializer" proto = "akka.remote.serialization.ProtobufSerializer" readylocal = "org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransactionSerializer" + simpleReplicatedLogEntry = "org.opendaylight.controller.cluster.raft.persisted.SimpleReplicatedLogEntrySerializer" } serialization-bindings { "com.google.protobuf.Message" = proto "org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransaction" = readylocal + "org.opendaylight.controller.cluster.raft.persisted.SimpleReplicatedLogEntry" = simpleReplicatedLogEntry } default-dispatcher { @@ -60,26 +86,73 @@ odl-cluster-data { } remote { log-remote-lifecycle-events = off + netty.tcp { - hostname = "127.0.0.1" - port = 2550 maximum-frame-size = 419430400 send-buffer-size = 52428800 receive-buffer-size = 52428800 } + + artery { + advanced { + #maximum-frame-size = 256 KiB + #maximum-large-frame-size = 2 MiB + } + } } cluster { - seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"] - seed-node-timeout = 12s - auto-down-unreachable-after = 30s + # Following is an excerpt from Akka Cluster Documentation + # link - http://doc.akka.io/docs/akka/snapshot/java/cluster-usage.html + # Warning - Akka recommends against using the auto-down feature of Akka Cluster in production. + # This is crucial for correct behavior if you use Cluster Singleton or Cluster Sharding, + # especially together with Akka Persistence. + + #auto-down-unreachable-after = 30s + + allow-weakly-up-members = on + + use-dispatcher = cluster-dispatcher + + failure-detector.acceptable-heartbeat-pause = 3 s + } + + persistence { + journal { + plugin = akka.persistence.journal.leveldb + + # The following activates the alternative segmented file journal. Each persistent actor + # is stored in a separate directory, with multiple segment files. Segments are removed + # when they are not longer required. + # + # plugin = akka.persistence.journal.segmented-file + segmented-file { + class = "org.opendaylight.controller.akka.segjournal.SegmentedFileJournal" + # Root directory for segmented journal storage + root-directory = "segmented-journal" + # Maximum size of a single entry in the segmented journal + max-entry-size = 16M + # Maximum size of a segment + max-segment-size = 128M + # Map each segment into memory. Note that while this can improve performance, + # it will also place additional burden on system resources. + memory-mapped = false + } + } - roles = [ - "member-1" - ] + snapshot-store.local.class = "org.opendaylight.controller.cluster.persistence.LocalSnapshotStore" + snapshot-store.plugin = akka.persistence.snapshot-store.local + } + } + cluster-dispatcher { + type = "Dispatcher" + executor = "fork-join-executor" + fork-join-executor { + parallelism-min = 2 + parallelism-max = 4 } } }