跳到主要内容

查询任务列表

查询该用户所有任务的列表。
GET
https://api.alayanew.com/api/serverless-train/v1/task/list
Authorizations
AuthorizationsStringHeaderRequired

用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。

Query Parameters
nameString

任务名称。

typeString

类型包括 debug、run、shell、group、task。

statusString

指定任务状态,例如:created,queued,starting,running,success,terminated。

aidcIdString

智算中心ID。

extensions.<key>String

必须是extensions.<key>:value,用户检索当创建task时指定相关extensions字段的task。

pageInt

页码,默认1。

sizeInt

查询行数,默认100。

Response
状态码:application/json
codeInt

code是一种常见的返回值形式,表示查询操作的执行结果。

0是成功标识,表示操作成功完成。
dataObject

data.countInt

查询结果数量。

data.rowsObject[Array]

msgString

code返回值为-1时,返回异常信息。

curl -X GET 'https://api.alayanew.com/api/serverless-train/v1/task/list?status=running' 
     -H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
{
    "code": 0,
    "data": {
        "count": 2,
        "rows": [
            {
                "id": "506927a1-1883-4413-abad-0de1ff309023",
                "name": "rungroup11",
                "createAt": "2025-02-21T02:51:53.000+00:00",
                "updateAt": "2025-02-24T02:44:28.000+00:00",
                "type": "group",
                "aidcId": "1",
                "status": "running",
                "reason": "",
                "config": {
                    "cmd": [
                        "python3",
                        "a.py"
                    ],
                    "env": {},
                    "args": [],
                    "image": "registry.hd-01.alayanew.com/aladdin/python:3.13",
                    "vksId": "vc3jedd7crnd",
                    "labels": {},
                    "workDir": "/root/",
                    "replicas": 1,
                    "resource": {
                        "cpu": 2,
                        "gpu": {
                            "count": 0,
                            "gpuType": ""
                        },
                        "mem": 8,
                        "epheneralStorage": 32
                    },
                    "namespace": "default",
                    "pvcMounts": null,
                    "runAsUser": null,
                    "extensions": {
                        "cpu": "2",
                        "env": "",
                    },
                    "imagePullSecret": {
                        "password": "[password]",
                        "registry": "https://registry.hd-01.alayanew.com:8443",
                        "username": "admin"
                    }
                }
            },
            {
                "id": "bc195a3a-d06e-4923-984e-c2c3b8c960db",
                "name": "runtask2",
                "createAt": "2025-02-20T06:59:53.000+00:00",
                "updateAt": null,
                "type": "task",
                "aidcId": "1",
                "status": "running",
                "reason": "",
                "config": {
                    "cmd": [
                        "python3",
                        "a.py"
                    ],
                    "env": {},
                    "args": [],
                    "image": "registry.hd-01.alayanew.com/aladdin/python:3.12",
                    "vksId": "vc3jedd7crnd",
                    "labels": {},
                    "workDir": "/root/",
                    "replicas": 1,
                    "resource": {
                        "cpu": 2,
                        "gpu": {
                            "count": 0,
                            "gpuType": ""
                        },
                        "mem": 8,
                        "epheneralStorage": 32
                    },
                    "namespace": "default",
                    "extensions": {
                        "cpu": "2",
                        "env": "",
                        "mem": "8G"
                    },
                    "imagePullSecret": {
                        "password": "Zetyun2024",
                        "registry": "https://registry.hd-01.alayanew.com",
                        "username": "admin"
                    }
                }
            }
        ]
    }
}