Bug 7521: Add custom local snapshot store
[controller.git] / opendaylight / md-sal / sal-clustering-config / src / main / resources / initial / factory-akka.conf
index e561b0eefc6fd3c28f00968150cf6c39e88a07f5..a9591f1a77c11800ef0e8063d1e8d3d53ec57c63 100644 (file)
@@ -61,30 +61,39 @@ 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 = 1 GiB
+          maximum-large-frame-size = 1 GiB
+        }
+      }
     }
 
     cluster {
-      seed-nodes = ["akka.tcp://opendaylight-cluster-data@127.0.0.1:2550"]
-
       seed-node-timeout = 12s
+      # 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
-
-      roles = [
-        "member-1"
-      ]
+      #auto-down-unreachable-after = 30s
 
+      allow-weakly-up-members = on
     }
 
     persistence {
       journal.plugin = akka.persistence.journal.leveldb
+
+      snapshot-store.local.class = "org.opendaylight.controller.cluster.persistence.LocalSnapshotStore"
       snapshot-store.plugin = akka.persistence.snapshot-store.local
     }
   }