You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by du...@apache.org on 2018/01/31 02:06:44 UTC

[incubator-openwhisk] branch master updated: update docs for ulimit and pid-limit (#3231)

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

dubeejw 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 11ab5c0  update docs for ulimit and pid-limit (#3231)
11ab5c0 is described below

commit 11ab5c063d5a61847481adf9e085f6130135be1f
Author: Carlos Santana <cs...@gmail.com>
AuthorDate: Tue Jan 30 21:06:41 2018 -0500

    update docs for ulimit and pid-limit (#3231)
---
 docs/reference.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/reference.md b/docs/reference.md
index ca4da34..479f6d5 100644
--- a/docs/reference.md
+++ b/docs/reference.md
@@ -484,14 +484,14 @@ The following table lists the default limits for actions.
 * The limit cannot be changed by the user.
 * An entity with too big parameters will be rejected on trying to create or update it.
 
-### Per Docker action open files ulimit (Fixed: 64:64)
-* The maximum number of open file is 64 (for both hard and soft limits).
-* The docker run command use the argument `--ulimit nofile=64:64`.
+### Per Docker action open files ulimit (Fixed: 1024:1024)
+* The maximum number of open files is 1024 (for both hard and soft limits).
+* The docker run command use the argument `--ulimit nofile=1024:1024`.
 * For more information about the ulimit for open files see the [docker run](https://docs.docker.com/engine/reference/commandline/run) documentation.
 
-### Per Docker action processes ulimit (Fixed: 512:512)
-* The maximum number of processes available to a user is 512 (for both hard and soft limits).
-* The docker run command use the argument `--ulimit nproc=512:512`.
+### Per Docker action processes ulimit (Fixed: 1024)
+* The maximum number of processes available to the action container is 1024.
+* The docker run command use the argument `--pids-limit 1024`.
 * For more information about the ulimit for maximum number of processes see the [docker run](https://docs.docker.com/engine/reference/commandline/run) documentation.
 
 ### Triggers

-- 
To stop receiving notification emails like this one, please contact
dubeejw@apache.org.