BUG-5280: refactor CohortEntry
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / resources / application.conf
index 6178f4903e734a88fe12a85b1dcf0972d68a12b7..83bb12d80634abb1bab006c5b803277f09dcc10a 100644 (file)
@@ -1,6 +1,15 @@
 
 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 {
+    loggers = ["akka.event.slf4j.Slf4jLogger"]
     cluster {
         roles = [
           "member-1"
@@ -11,11 +20,12 @@ odl-cluster-data {
       serializers {
                 java = "akka.serialization.JavaSerializer"
                 proto = "akka.remote.serialization.ProtobufSerializer"
+                readylocal = "org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransactionSerializer"
               }
 
               serialization-bindings {
                   "com.google.protobuf.Message" = proto
-
+                  "org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransaction" = readylocal
               }
     }
     remote {
@@ -39,6 +49,7 @@ odl-cluster-data {
 
 odl-cluster-rpc {
   akka {
+    loggers = ["akka.event.slf4j.Slf4jLogger"]
     actor {
       provider = "akka.cluster.ClusterActorRefProvider"