Use correct failure detector for akka clustering
[controller.git] / opendaylight / md-sal / sal-clustering-config / src / main / resources / initial / akka.conf
index 9977babe350fa503bba0356c74eb109fccadb172..0a71fd416b1a5d03c30db14e6bb70a0c889674c2 100644 (file)
@@ -3,24 +3,26 @@ odl-cluster-data {
   akka {
     remote {
       artery {
-        enabled = off
+        enabled = on
+        transport = tcp
         canonical.hostname = "127.0.0.1"
         canonical.port = 2550
       }
-      netty.tcp {
-        hostname = "127.0.0.1"
-        port = 2550
-      }
     }
 
     cluster {
-      # Remove ".tcp" when using artery.
-      seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"]
+      # 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
+      # }
     }
 
     persistence {
@@ -29,16 +31,12 @@ odl-cluster-data {
       # 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"
   }
 }