markusthoemmes commented on a change in pull request #2531: Share bookkeeping 
data across controllers
URL: 
https://github.com/apache/incubator-openwhisk/pull/2531#discussion_r138256441
 
 

 ##########
 File path: core/controller/src/main/resources/application.conf
 ##########
 @@ -55,3 +55,39 @@ akka.http {
     }
   }
 }
+
+# Check out all akka-remote-2.5.3 options here:
+# 
http://doc.akka.io/docs/akka/2.5.3/scala/general/configuration.html#config-akka-remote
+akka {
+  actor {
+    provider = ${?AKKA_ACTOR_PROVIDER}
+  }
+  remote {
+    log-remote-lifecycle-events = DEBUG
+    log-received-messages = on
+    log-sent-messages = on
+
+    netty.tcp {
+      maximum-frame-size=1280000000b
+      hostname = ${?AKKA_CLUSTER_HOST}
+      port = ${?AKKA_CLUSTER_PORT}
+      bind-port = ${?AKKA_CLUSTER_BIND_PORT}
+      bind-hostname = ${?CONTAINER_IP}
+    }
+  }
+  cluster {
+    # Disable legacy metrics in akka-cluster.
+    metrics.enabled=off
+
+    # Sigar native library extract location during tests.
+    # Note: use per-jvm-instance folder when running multiple jvm on one host.
+    metrics.native-library-extract-folder=${user.dir}/target/native
 
 Review comment:
   The comment states this is for tests. Do we need this in the production 
config?
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to