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=88443c00b395f2baa57495893c8535882c798411;hp=852171285ce63124c62225b8c5fb9f36341d62d7;hb=7cb260aeb0738104e3bee8a086de9e2e5f77b7e0;hpb=6e76bb44514ea79524f46ff283ea0d0d4ad8c7f8 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 852171285c..88443c00b3 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 @@ -2,13 +2,24 @@ odl-cluster-data { akka { remote { + artery { + enabled = off + canonical.hostname = "127.0.0.1" + canonical.port = 2550 + } netty.tcp { hostname = "127.0.0.1" port = 2550 } + # when under load we might trip a false positive on the failure detector + # transport-failure-detector { + # heartbeat-interval = 4 s + # acceptable-heartbeat-pause = 16s + # } } cluster { + # Remove ".tcp" when using artery. seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"] roles = [ @@ -16,23 +27,19 @@ odl-cluster-data { ] } - + 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 - } - } + # 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" } }