This is an automated email from the ASF dual-hosted git repository.

markusthoemmes pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 7dbb8f7  Add additional debug information if activations have to wait 
in the invoker. (#4030)
7dbb8f7 is described below

commit 7dbb8f7b4f42a1a71275c0a6d4f0a06370b005b1
Author: Christian Bickel <git...@cbickel.de>
AuthorDate: Thu Sep 20 16:59:35 2018 +0200

    Add additional debug information if activations have to wait in the 
invoker. (#4030)
---
 .../src/main/scala/whisk/core/containerpool/ContainerPool.scala        | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/core/invoker/src/main/scala/whisk/core/containerpool/ContainerPool.scala 
b/core/invoker/src/main/scala/whisk/core/containerpool/ContainerPool.scala
index fd50a3c..fe31ec4 100644
--- a/core/invoker/src/main/scala/whisk/core/containerpool/ContainerPool.scala
+++ b/core/invoker/src/main/scala/whisk/core/containerpool/ContainerPool.scala
@@ -163,7 +163,8 @@ class ContainerPool(childFactory: ActorRefFactory => 
ActorRef,
                   s"busyPoolSize: ${busyPool.size} containers and 
${memoryConsumptionOf(busyPool)} MB, " +
                   s"maxContainersMemory ${poolConfig.userMemory.toMB} MB, " +
                   s"userNamespace: ${r.msg.user.namespace.name}, action: 
${r.action}, " +
-                  s"needed memory: ${r.action.limits.memory.megabytes} 
MB")(r.msg.transid)
+                  s"needed memory: ${r.action.limits.memory.megabytes} MB, " +
+                  s"waiting messages: ${runBuffer.size}")(r.msg.transid)
               Some(logMessageInterval.fromNow)
             } else {
               r.retryLogDeadline

Reply via email to