All Products
Search
Document Center

Function Compute (2.0):ListStatefulAsyncInvocations

Last Updated:Apr 18, 2024

Queries all asynchronous invocations in an asynchronous task that meets specific conditions.

Operation description

StatefulAsyncInvocation represents asynchronous tasks. Asynchronous tasks (StatefulAsyncInvocation) allow you to manage the states of asynchronous invocations. The asynchronous task feature is more suitable for task scenarios.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request syntax

GET /2021-04-06/services/{serviceName}/functions/{functionName}/stateful-async-invocations

Request parameters

ParameterTypeRequiredDescriptionExample
serviceNamestringYes

The name of the service to which the asynchronous task belongs.

demo-service
functionNamestringYes

The name of the function to which the asynchronous task belongs.

demo-function
qualifierstringNo

The version or alias of the service to which the asynchronous task belongs.

LATEST
statusstringNo

The state of the asynchronous task.

  • Enqueued: The asynchronous task is enqueued and is waiting to be executed.
  • Succeeded: The invocation succeeded.
  • Failed: The invocation failed.
  • Running: The invocation is being executed.
  • Stopped: The invocation was terminated.
  • Stopping: The invocation is being terminated.
  • Invalid: The invocation is invalid and not executed due to specific reasons. For example, the function is deleted.
  • Expired: The maximum validity period of messages is specified for the asynchronous invocation. The invocation is discarded and not executed because the specified maximum validity period of messages elapsed.
  • Retrying: The asynchronous task is being retried due to an execution error.
Running
nextTokenstringNo

The token required to obtain more results. You do not need to specify this parameter in the first call. If a NextToken value is returned by a previous call, more results are available.

caeba0****be03f84eb48b699f0a4883
limitintegerNo

The maximum number of asynchronous tasks to be returned. Valid values: [1,100]. Default value: 50.

20
startedTimeBeginlongNo

The start time of the asynchronous task.

1640966400000
startedTimeEndlongNo

The end time of the asynchronous task.

1640966400000
sortOrderByTimestringNo

The method that you want to use to sort the returned asynchronous tasks.

  • asc: the ascending order
  • desc: the descending order
desc
invocationIdPrefixstringNo

The name prefix of the asynchronous tasks. This parameter is used to limit the names of the returned asynchronous tasks. For example, if you set the invocationidPrefix parameter to job, the names of the returned invocations must start with job.

abcxxx
includePayloadbooleanNo
  • Specifies whether to return the invocationPayload parameter in the response. true: returns the invocationPayload parameter in the response.``
  • false: does not return the invocationPayload parameter in the response.``
Note The invocationPayload parameter indicates the input parameters of an asynchronous task.
true
X-Fc-Account-IdstringNo

The ID of your Alibaba Cloud account.

188077086902****
X-Fc-Code-ChecksumstringNo

The CRC-64 value of the function code package. This value is used to check data integrity. The value is automatically calculated by the tool.

1506052139770049xxxx
X-Fc-Log-TypestringNo

The method used to return logs.

  • Tail: returns the last 4 KB of logs that are generated for the current request.
  • None: does not return logs for the current request. Default value: None.
Tail
X-Fc-Invocation-TypestringNo

The method used to invoke the function.

  • Sync: synchronous invocations
  • Async: asynchronous invocations
Async
X-Fc-DatestringNo

The time when the function is invoked. The value is in the EEE,d MMM yyyy HH:mm:ss GMT format.

Sat, 14 Jul 2017 07:02:38 GMT
X-Fc-Trace-IdstringNo

The trace ID of the request for Function Compute API.

abcxxx

Response parameters

ParameterTypeDescriptionExample
object

The data struct returned.

nextTokenstring

The token used to obtain more results. If this parameter is left empty, all the results are returned.

8bj81uI8n****
invocationsarray

The list of asynchronous tasks.

StatefulAsyncInvocation

The information about the asynchronous task.

[{"functionName": "demo-function","serviceName": "demo-service","qualifier": "LATEST","invocationId": "id","status": "Succeeded","startedTime": 1640966400000,"endTime": 1640966500000,"destinationStatus": "Succeeded","invocationErrorMessage": "","invocationPayload": "","requestId": "id","alreadyRetriedTimes": 0,}]

Examples

Sample success responses

JSONformat

{
  "nextToken": "8bj81uI8n****",
  "invocations": [
    {
      "functionName": "functionName",
      "serviceName": "serviceName",
      "qualifier": "LATEST",
      "invocationId": "demo-id",
      "status": "Running",
      "startedTime": 1633449590000,
      "endTime": 1633449599000,
      "destinationStatus": "Succeeded",
      "invocationErrorMessage": "UnhandledInvocationError",
      "invocationPayload": "{\"key1\":\"value1\",\"key2\":\"value2\"}",
      "alreadyRetriedTimes": 3,
      "requestId": "ABA740D4-********-882707EADC37",
      "instanceId": "D4-*******9FD1-882707E",
      "events": [
        {
          "eventId": 1,
          "status": "Enqueued",
          "timestamp": 1647420449721,
          "eventDetail": "{\"Error\":\"UnhandledInvocationError\"}"
        }
      ],
      "durationMs": 100,
      "returnPayload": "my-result"
    }
  ]
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2021-06-30The request parameters of the API has changedsee changesets
Change itemChange content
Input ParametersThe request parameters of the API has changed.
    Added Input Parameters: X-Fc-Account-Id
    Added Input Parameters: X-Fc-Code-Checksum
    Added Input Parameters: X-Fc-Log-Type
    Added Input Parameters: X-Fc-Invocation-Type
    Added Input Parameters: X-Fc-Date
    Added Input Parameters: X-Fc-Trace-Id
2021-06-30The request parameters of the API has changedsee changesets
Change itemChange content
Input ParametersThe request parameters of the API has changed.
    Added Input Parameters: X-Fc-Account-Id
2021-06-30The request parameters of the API has changedsee changesets
Change itemChange content
Input ParametersThe request parameters of the API has changed.
    delete Input Parameters: X-Fc-Account-Id