You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openwhisk.apache.org by Rodric Rabbah <ro...@gmail.com> on 2018/07/09 16:57:48 UTC

share additional deployment related limits through API host

currently if you query the API host (GET /openwhisk) you get a response
which includes the deployment manifest and action invocation limits. I've
added in this PR [1] additional limits to include the min/max action
duration, memory size and log size so the response looks like:

"limits": {
    "min_action_logs": 134217728,
    "max_action_memory": 536870912,
    "actions_per_minute": 60,
    "min_action_memory": 134217728,
    "concurrent_actions": 30,
    "triggers_per_minute": 60,
    "sequence_length": 50,
    "max_action_logs": 536870912,
    "min_action_duration": 100,
    "max_action_duration": 300000
  }


Thoughts?

[1] https://github.com/apache/incubator-openwhisk/pull/3859

Re: share additional deployment related limits through API host

Posted by Nick Mitchell <mo...@gmail.com>.
yes please! https://github.com/apache/incubator-openwhisk/issues/335

On Mon, Jul 9, 2018 at 12:57 PM, Rodric Rabbah <ro...@gmail.com> wrote:

> currently if you query the API host (GET /openwhisk) you get a response
> which includes the deployment manifest and action invocation limits. I've
> added in this PR [1] additional limits to include the min/max action
> duration, memory size and log size so the response looks like:
>
> "limits": {
>     "min_action_logs": 134217728,
>     "max_action_memory": 536870912,
>     "actions_per_minute": 60,
>     "min_action_memory": 134217728,
>     "concurrent_actions": 30,
>     "triggers_per_minute": 60,
>     "sequence_length": 50,
>     "max_action_logs": 536870912,
>     "min_action_duration": 100,
>     "max_action_duration": 300000
>   }
>
>
> Thoughts?
>
> [1] https://github.com/apache/incubator-openwhisk/pull/3859
>