IBM Cloud Docs
System details and limits

System details and limits

IBM Cloud® Functions is deprecated. Existing Functions entities such as actions, triggers, or sequences will continue to run, but as of 28 December 2023, you can’t create new Functions entities. Existing Functions entities are supported until October 2024. Any Functions entities that still exist on that date will be deleted. For more information, see Deprecation overview.

The following sections provide technical details about the IBM Cloud® Functions system and limit settings.

Action limits

Cloud Functions has a few system limits, including how much memory an action can use and how many action invocations are allowed per minute.

The following table lists the default limits for actions.

Table 1. Default limits for actions
Limit Description Default Min Max
codeSize The maximum code size for an action is 48 MB. You can use custom Docker images as a workaround for large dependencies; however, the maximum code size for your action is still 48 MB. For JavaScript actions, use a tool to concatenate all source code, which includes dependencies, into a single bundled file. This limit is fixed and cannot be changed. Note that binary code is base64 encoded, which increases the size by approximately 33%. In this case, the actual limit is reduced to 36 MB. 48 1 48
concurrent The number of activations that are either executing or queued for execution for a namespace cannot exceed 1000. This limit value is fixed, but can be increased if a business case can justify higher safety limit values. See Increasing fixed limits for instructions on how to increase this limit. 1000 1 1000
logs The log limit N is in the range [0 MB..10 MB] and is set per action. A user can change the action log limit when an action is created or updated. Logs that exceed the set limit are truncated, so any new log entries are ignored, and a warning is added as the last output of the activation to indicate that the activation exceeded the set log limit. 10 0 10
memory The memory limit M is in the range from [128 MB..2048 MB] and is set per action in MB. A user can change the memory limit when an action is created. A container cannot use more memory than is allocated by the limit. 256 128 2048
minuteRate No more than N activations can be submitted per namespace per minute. The rate limit N is set to 5000 and limits the number of action invocations in 1-minute windows. A CLI or API call that exceeds this limit receives an error code corresponding to HTTP status code 429: TOO MANY REQUESTS. This limit value is fixed, but can be increased if a business case can justify higher safety limit values. See Increasing fixed limits for instructions on how to increase this limit. 5000 1 5000
openulimit The maximum number of open files for an action is 1024 (for both hard and soft limits). This limit is fixed and cannot be changed. When an action is invoked, the docker run command uses the argument --ulimit nofile=1024:1024 to set the openulimit value. For more information, see the docker run command line reference documentation. 1024 0 1024
parameters The maximum size of the parameters that can be attached in MB. The size limit for the total parameters on creating or updating of an action, package, or trigger is 5 MB. An entity with too large parameters is rejected on trying to create or update it. This limit is fixed and cannot be changed. 5 0 5
proculimit The maximum number of processes available to the action container is 1024. This limit is fixed and cannot be changed. When an action is invoked, the docker run command uses the argument --pids-limit 1024 to set the proculimit value. For more information, see the docker run command-line reference documentation. 1024 0 1024
result The maximum output size of an action invocation result in MB. This limit is fixed and cannot be changed. 5 0 5
sequenceMaxActions The maximum number of actions that comprise a sequence. This limit is fixed and cannot be changed. 50 0 50
timeout The timeout limit N is in the range 100 ms to 600000 ms, and is set per action in milliseconds. You can change the timeout limit when an action is created. A container that runs longer than N milliseconds is terminated. 60000 100 600000

Web action limits

Table 2. Web action limits
Parameter Limit
Request headers 8 KB cumulative
Response headers 4 KB cumulative

Sequence limits

A sequence does not have limits that are separate from those limits of each action that is contained within the sequence. Because a sequence is a pipeline of actions, a failure in one action breaks the pipeline. For example, if one action times out, the entire sequence is exited with that failure.

Trigger rate limits

Triggers are subject to a firing rate per minute as documented in the following table.

Table 3. Default limits for triggers
Limit Description Default Min Max
minuteRate The rate limit N is set to 5000 and limits the number of triggers that a user can fire in 1-minute windows. You cannot change the trigger limit when a trigger is created. A CLI or API call that exceeds this limit receives an error code corresponding to HTTP status code 429: TOO MANY REQUESTS. This limit value is fixed, but can be increased if a business case can justify higher safety limit values. Check the section Increasing fixed limits for detailed instructions on how to increase this limit. 5000* 5000* 5000*

Increasing fixed limits

Limit values that end with an asterisk (*) are fixed, but can be increased if a business case can justify higher safety limit values. If you would like to increase the limit value, contact IBM support by opening a ticket directly from the IBM Cloud Functions web console.

  1. Select Support.
  2. Select Add Ticket from the drop-down menu.
  3. Select Technical for the ticket type.
  4. Select Functions for Technical area of support.

Cloud Functions entities

The following sections describe system details about Cloud Functions.

Namespaces and packages

Cloud Functions actions, triggers, and rules belong in a namespace, and sometimes a package.

Packages can contain actions and feeds. A package cannot contain another package, so package nesting is not allowed. Also, entities do not have to be contained in a package.

You can create new IAM-based namespaces by running ibmcloud fn namespace create. Cloud Foundry-based namespaces are made from a combination of an org and space name. For example, if you are targeted to the user@email.com org and the dev space, then you are targeting the Cloud Functions Cloud Foundry-based namespace called user@email.com_dev.

The /whisk.system namespace is reserved for entities that are distributed with the Cloud Functions system.

The Serverless Framework is not supported for IAM-based namespaces.

Fully qualified names in Cloud Functions

The fully qualified name of an entity is /<namespace_id>/<package_name>/<entity_name>. Notice that / is used to delimit Cloud Foundry-based namespaces, packages, and entities. Also, when you work in the CLI, some commands with namespaces must be prefixed with a /.

For convenience, the namespace can be omitted if it is the user's default namespace. For example, consider a user whose default namespace is /myOrg. Following are examples of the fully qualified names of a number of entities and their aliases.

Table 4. Fully qualified names and their aliases
Fully qualified name Alias Namespace Package Name
/whisk.system/cloudant/read /whisk.system cloudant read
/myOrg/video/transcode video/transcode /myOrg video transcode
/myOrg/filter filter /myOrg filter

You can use this naming scheme when you use the Cloud Functions CLI, among other places.

More precisely, a name must match the following regular expression (expressed with Java meta character syntax): \A([\w]|[\w][\w@ .-]*[\w@.-]+)\z.

Action semantics

The following sections describe details about Cloud Functions actions.

Statelessness

Action implementations are stateless, or idempotent. While the system does not enforce this property, it is not guaranteed that any state maintained by an action is available across invocations.

Moreover, multiple instantiations of an action might exist, with each instantiation with its own state. An action invocation might be dispatched to any of these instantiations.

Invocation input and output

The input to and output from an action is a dictionary of key-value pairs. The key is a string, and the value a valid JSON value.

Invocation ordering of actions

Invocations of an action are not ordered. If the user invokes an action twice from the command-line or the REST API, the second invocation might run before the first. If the actions have side effects, they might be observed in any order.

Additionally, it is not guaranteed that actions execute automatically. Two actions can run concurrently and their side effects can be interleaved. OpenWhisk does not ensure any particular concurrent consistency model for side effects.

Action executions

When an invocation request is received, the system records the request and dispatches an activation.

The system returns an activation ID (with a nonblocking invocation) that confirms that it is received. If a network failure or other failure that intervenes before you receive an HTTP response, it is possible that Cloud Functions received and processed the request.

The system attempts to invoke the action once, resulting in one of the following four outcomes:

Table 5. Outcomes for invoking an action
Result Description
success The action invocation completed successfully.
application error The action invocation was successful, but the action returned an error value on purpose, for instance because a precondition on the arguments was not met.
action developer error The action was invoked, but it completed abnormally, for instance the action did not detect an exception, or a syntax error existed.
whisk internal error The system was unable to invoke the action. The outcome is recorded in the status field of the activation record, as document in a following section.

For every invocation that is successfully received, and that the user might be billed for, has an activation record.

When the outcome is action developer error, the action might partially run, and generate external visible side effects. It is the user's responsibility to check whether such side effects happened, and issue retry logic. Certain whisk internal errors indicate that an action starts to run, but fails before the action registers completion.

Activation record

Each action invocation and trigger firing results in an activation record.

An activation record contains the following fields:

Table 6. Fields for an activation record
Field Description
activationId The activation ID.
start and end Timestamps recording the start and end of the activation. The values are in UNIX time format.
namespace and name The namespace and name of the entity.
logs An array of strings with the logs that are produced by the action during its activation. Each array element corresponds to a line output to stdout or stderr by the action, and includes the time and stream of the log output. The structure is as follows: TIMESTAMP STREAM: LOG_OUTPUT.
response

A dictionary that defines the keys success, status, and result.

  • status: The activation result, which might be one of the following values: success, application error, action developer error, or whisk internal error.
  • success: true if and only if the status is success.
result A dictionary that contains the activation result. If the activation was successful, the result contains the value that is returned by the action. If the activation was unsuccessful, result contains the error key, generally with an explanation of the failure.