跳到主要内容

查询任务队列

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

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

Query Parameters
nameString

任务名称。

typeString

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

aidcIdString

智算中心ID。

extensions.<key>String

格式为:extensions.<key>:value,用户指定了一些标签后,可以通过标签查询到对应的任务。

pageInt

页码,默认1。

sizeInt

查询行数,默认100。

Response
状态码:application/json
codeInt

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

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

data.countString

查询结果数量。

data.rowsObject[Array]

msgString

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

curl -X GET 'https://api.alayanew.com/api/serverless-train/v1/task/queue?name=debug&type=task' 
     -H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
{
    "code": 0,
    "data": {
        "count": 1,
        "rows": [
            {
                "id": "6167a1ea-957a-4f68-b2e8-7f3f49ad5087",
                "name": "runtask2",
                "createAt": "2025-02-21T02:49:57.000+00:00",
                "updateAt": "2025-02-21T02:59:57.000+00:00",
                "type": "task",
                "aidcId": "1",
                "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",
                    "extensions": {
                        "source": "a.py",
                        "folders": [
                            {
                                "path": "a.py",
                                "value": ""
                            }
                        ]
                    }
                }
            }
        ]
    }
}