Here is an example of the performance impact we are talking about.
Action that generates large payload:
```
function main(args) {
let str = new Array(args.size).join(args.char)
return {
msg : str
}
}
```
16 seconds to invoke the action:
```
time ./wsk action invoke size -p size 1500000 -p char a -b >> test.txt
real 0m16.368s
user 0m0.160s
sys 0m0.086s
```
[ Full content available at:
https://github.com/apache/incubator-openwhisk/pull/4033 ]
This message was relayed via gitbox.apache.org for [email protected]