You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once deployed all actions with concurrency limit greater than 1 (I tested with 2, 5, 10, 15, 20), the output of the command wsk -i activation list results in:
Invoking actions deployed with a concurrency limit greater than 1 brings the openwhisk-composer to use echo action to retrieve intermediate result from redis node.
In both cases the composition result is calculated correctly.
The disadvantage is that trying to enable concurrency to have lower latency, the execution time is penalized by:
conductor actions which are forced (for some reason) to wait for a timeout to expire;
cold starts introduced by a further call to the echo action.
The text was updated successfully, but these errors were encountered:
I am also facing something similar, in case of fan-in pattern my autogenerated conductor action waits till the last 30 second of whatever timeout I set to actually be called. Did you face any similar issue?
System
Deployment
OpenWhisk platform has been deployed using the following commands (https://github.com/apache/openwhisk-deploy-kube/blob/master/README.md):
File "my_cluster.yaml" contains:
Composition file
Behavior
Once deployed all actions with concurrency limit greater than 1 (I tested with 2, 5, 10, 15, 20), the output of the command
wsk -i activation list
results in:Deploying all actions with concurrency limit of 1, the command
wsk -i activation list
, results in:Problem
Invoking actions deployed with a concurrency limit greater than 1 brings the openwhisk-composer to use
echo
action to retrieve intermediate result from redis node.In both cases the composition result is calculated correctly.
The disadvantage is that trying to enable concurrency to have lower latency, the execution time is penalized by:
echo
action.The text was updated successfully, but these errors were encountered: