查询任务列表
查询该用户所有任务的列表。
GET
https://api.alayanew.com/api/serverless-train/v1/task/list
Authorizations
Authorizations:StringHeaderRequired
用户可通过已获取Serverless API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。
Query Parameters
name:String
任务名称。
type:String
类型包括 debug、run、shell、group、task。
status:String
指定任务状态,例如:created,queued,starting,running,success,terminated。
aidcId:String
智算中心ID。
extensions.<key>:String
必须是extensions.<key>:value,用户检索当创建task时指定相关extensions字段的task。
page:Int
页码,默认1。
size:Int
查询行数,默认100。
Response
状态码:application/json
200
code:Int
code是一种常见的返回值形式,表示查询操作的执行结果。
0
-1
0是成功标识,表示操作成功完成。
data:Object
data.count:Int
查询结果数量。
data.rows:Object[Array]
msg:String
code返回值为-1时,返回异常信息。
cURL
Python
JavaScript
Go
Java
curl -X GET 'https://api.alayanew.com/api/serverless-train/v1/task/list?status=running'
-H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
200
400
401
404
429
503
504
{
"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"
}
}
}
]
}
}