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=0a71fd416b1a5d03c30db14e6bb70a0c889674c2;hp=f632b9cc839f97d5e33dd19ff51754b292c7682f;hb=1b2f032084fc334f1027524afe40c608706c56e3;hpb=4a8688c9d42c0be307383f0483c819cb7a78d26d 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 f632b9cc83..0a71fd416b 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,76 +1,42 @@ 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 { - actor { - provider = "akka.cluster.ClusterActorRefProvider" - serializers { - java = "akka.serialization.JavaSerializer" - proto = "akka.remote.serialization.ProtobufSerializer" - } - - serialization-bindings { - "com.google.protobuf.Message" = proto - - } - } 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 { + enabled = on + transport = tcp + canonical.hostname = "127.0.0.1" + canonical.port = 2550 } } cluster { - seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"] - - auto-down-unreachable-after = 10s + # Using artery. + seed-nodes = ["akka://opendaylight-cluster-data@127.0.0.1:2550"] roles = [ "member-1" ] + # when under load we might trip a false positive on the failure detector + # failure-detector { + # heartbeat-interval = 4 s + # acceptable-heartbeat-pause = 16s + # } } - } -} -odl-cluster-rpc { - bounded-mailbox { - mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox" - mailbox-capacity = 1000 - mailbox-push-timeout-time = 100ms - } + persistence { + # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by + # modifying the following two properties. The directory location specified may be a relative or absolute path. + # The relative path is always relative to KARAF_HOME. - metric-capture-enabled = true - - akka { - actor { - provider = "akka.cluster.ClusterActorRefProvider" - - } - remote { - log-remote-lifecycle-events = off - netty.tcp { - hostname = "127.0.0.1" - port = 2551 - } - } - - cluster { - seed-nodes = ["akka.tcp://odl-cluster-rpc@127.0.0.1:2551"] + # snapshot-store.local.dir = "target/snapshots" - auto-down-unreachable-after = 10s + # Use lz4 compression for LocalSnapshotStore snapshots + snapshot-store.local.use-lz4-compression = false + # Size of blocks for lz4 compression: 64KB, 256KB, 1MB or 4MB + snapshot-store.local.lz4-blocksize = 256KB } + disable-default-actor-system-quarantined-event-handling = "false" } }