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=31e54601dc6bf5e79b9103e2cdcb0d1dba5831be;hb=refs%2Fchanges%2F66%2F49466%2F10;hp=0535179aadf79c4196a8f606433c1cd8b4e89949;hpb=20d3e2621112fe4bf77b888d57dbdc69f2105d82;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 0535179aad..31e54601dc 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,55 +1,39 @@ odl-cluster-data { 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 = "" - port = 2550 - maximum-frame-size = 419430400 - send-buffer-size = 52428800 - receive-buffer-size = 52428800 + artery { + enabled = on + canonical.hostname = "127.0.0.1" + canonical.port = 2550 } } cluster { - seed-nodes = ["akka.tcp://opendaylight-cluster-data@:2550"] + seed-nodes = ["akka://opendaylight-cluster-data@127.0.0.1:2550"] - auto-down-unreachable-after = 10s - } - } -} - -odl-cluster-rpc { - akka { - actor { - provider = "akka.cluster.ClusterActorRefProvider" + roles = [ + "member-1" + ] } - remote { - log-remote-lifecycle-events = off - netty.tcp { - hostname = "" - port = 2551 + + 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. + + # snapshot-store.local.dir = "target/snapshots" + # journal.leveldb.dir = "target/journal" + + 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. + + # native = off + } } } - - cluster { - seed-nodes = ["akka.tcp://opendaylight-cluster-rpc@:2551"] - - auto-down-unreachable-after = 10s - } } }