2019-08-22 09:08:46 UTC - chris: Hello everyone, Is there anyone who also meet this situation...... ``` "result": { "error": "The action exhausted its memory and was aborted." } ``` I already tried to change the memory use `512MB`, but it still error https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566464926076700 ---- 2019-08-22 09:10:40 UTC - James Thomas: @chris Give it 1GB and try again? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566465040078100 ---- 2019-08-22 09:11:09 UTC - James Thomas: are you doing something memory intensive? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566465069078700 ---- 2019-08-22 09:11:36 UTC - chris: But, Didn't the document said: The memory limit M is in the range from [128MB..512MB] and is set per action in MB https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566465096079200?thread_ts=1566465096.079200&cid=C3TPCAQG1 ---- 2019-08-22 09:12:05 UTC - James Thomas: @chris are you using OW locally or on a hosted platform (like ibm cloud functions)? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566465125079700 ---- 2019-08-22 09:12:30 UTC - James Thomas: you can change the upper limit in configuration to be whatever you want if you are deploying locally, ibm cloud fns supports up to 2GB https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566465150080500 ---- 2019-08-22 09:12:32 UTC - chris: I install it on local by using docker-compose https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566465152080600 ---- 2019-08-22 09:13:25 UTC - chris: Really!!!! https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566465205080900 ---- 2019-08-22 10:22:02 UTC - Rodric Rabbah: That’s the default limit set in the deployment. https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566469322081800?thread_ts=1566465096.079200&cid=C3TPCAQG1 ---- 2019-08-22 10:27:39 UTC - Pepi Paraskevoulakou: Do you have and tutorial how to create docker images ai with python ? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566469659082900?thread_ts=1566295387.062300&cid=C3TPCAQG1 ---- 2019-08-22 12:03:05 UTC - James Thomas: Do you follow my blog posts? Most of the instructions in there can be re-used https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566475385083100?thread_ts=1566295387.062300&cid=C3TPCAQG1 ---- 2019-08-22 12:39:38 UTC - Sven Lange-Last: @chris which action kind are you using? did you obtain the error for a warm or a cold invocation? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566477578083900?thread_ts=1566477578.083900&cid=C3TPCAQG1 ---- 2019-08-22 17:37:45 UTC - Ahmet Uyar: Hi guys, I am using OpenWhisk at Ubuntu. I set the timeout in an action as 120000. But, I am still getting the following message after 60 seconds. ok: invoked /_/hello-dotnet-4, but the request has not yet finished, with id 407d36ec73e94eddbd36ec73e9cedd3eWhen I check my action, I can see that the timeout is set as 120000. Is there anything else I need to change? Thanks. https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566495465086400?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:39:35 UTC - Carlos Santana: nope, working as design. you get back a http ok with statusCode 202 when it hits 60 seconds https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566495575086600?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:40:26 UTC - Carlos Santana: meaning your action is still running in the background and you get an activation id so you can find what happened with with it after is done https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566495626086800?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:40:54 UTC - Carlos Santana: if you action responds faster than 60 seconds, then you get a http statusCode 200 https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566495654087000?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:41:49 UTC - Ahmet Uyar: can i be informed after the action has completed? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566495709087200?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:43:41 UTC - Ahmet Uyar: Actually I would like to know how long my action has taken. So, I want to be informed after it is done. So that I can calculate duration. https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566495821087400?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:50:51 UTC - Rodric Rabbah: if you look up the activation record it will tell you https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496251087600?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:51:05 UTC - Rodric Rabbah: `wsk activation get 407d36ec73e94eddbd36ec73e9cedd3e` https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496265087800?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:51:44 UTC - Rodric Rabbah: there isn’t a built in notification mechanism although one can be built at user level - depends how you want to consume the notification (eg webhook?) https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496304088000?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:52:25 UTC - Ahmet Uyar: thanks https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496345088200?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:52:56 UTC - Ahmet Uyar: it has "waitTime" in the response of activation https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496376088400?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:53:12 UTC - Ahmet Uyar: Not exactly what I wanted but close https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496392088600?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:53:27 UTC - Ahmet Uyar: Notification would have been much better https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496407088800?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:53:39 UTC - Rodric Rabbah: there’s a `duration` field which is the time the action took https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496419089000?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:54:15 UTC - Rodric Rabbah: <https://github.com/apache/openwhisk/blob/master/docs/actions.md#understanding-the-activation-record> https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496455089200?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:54:28 UTC - Ahmet Uyar: i need end-to-end delay https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496468089400?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:54:34 UTC - Rodric Rabbah: and <https://github.com/apache/openwhisk/blob/master/docs/annotations.md#annotations-specific-to-activations> https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496474089600?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:54:38 UTC - Ahmet Uyar: so duration does not work for me https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496478089800?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:54:59 UTC - Rodric Rabbah: duration + waitTime will give you the server side latency, no client to server (network latency) https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496499090000?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:55:06 UTC - Ahmet Uyar: how long does it take from the request to the rsponse https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496506090200?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:55:28 UTC - Ahmet Uyar: that may work https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496528090500?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:55:57 UTC - Ahmet Uyar: thanks https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496557090700?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:56:26 UTC - Ahmet Uyar: trhere is also initTime https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496586090900?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 17:56:36 UTC - Ahmet Uyar: should I also include that? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566496596091100?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 18:03:43 UTC - Rodric Rabbah: initTime is included in duration https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566497023091300?thread_ts=1566495465.086400&cid=C3TPCAQG1 ---- 2019-08-22 19:31:13 UTC - Ahmet Uyar: thanks https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1566502273091500?thread_ts=1566495465.086400&cid=C3TPCAQG1 ----