作业
查询作业状态统计信息
1.接口说明
接口路径:/hpc/openapi/v2/view/jobs/state
请求方式:GET
请求数据类型:
接口描述:查询作业状态统计信息
2.请求消息
请求参数:
Headers:
| 名称 | 类型 | 必填 | 描述 | 示例 |
|---|---|---|---|---|
| token | string | 是 | 接口凭证 | eyJhbGciOiJIUzI1N... |
参数:
| 名称 | 类型 | 必填 | 描述 | 示例 |
|---|---|---|---|---|
| userName | string | 是 | 用户名 |
3.请求示例
cURL请求示例
shell
curl --location 'https://scnet-demo.accloud.cn/hpc/openapi/v2/view/jobs/state?userName=test' \
--header 'Content-Type: application/json' \
--header 'token: <Token>'Java请求示例
java
import okhttp3.*;
public class QueryJobStateDemo {
public static final String TOKEN = "<Token>";
public static void main(String[] args) throws Exception {
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url("https://scnet-demo.accloud.cn/hpc/openapi/v2/view/jobs/state?userName=test")
.method("GET", null)
.addHeader("Content-Type", "application/json")
.addHeader("token", TOKEN)
.build();
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
}
}Python请求示例
python
import requests
import json
url = "https://scnet-demo.accloud.cn/hpc/openapi/v2/view/jobs/state?userName=test"
payload = {}
headers = {
"Content-Type": "application/json",
"token": "<Token>"
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)4.响应消息
返回参数:
| 名称 | 类型 | 描述 | 示例 |
|---|---|---|---|
| code | string | 返回码,0为正常 | 0 |
| msg | string | 信息 | success |
| data | array | 状态数组 | |
| name | string | 作业状态 | 运行 |
| y | int | 作业个数 | 1 |
返回示例:
json
{
"code":"0",
"msg":"success",
"data":[
{
"name":"运行",
"y":1
},
{
"name":"排队",
"y":0
},
{
"name":"保留",
"y":0
},
{
"name":"挂起",
"y":0
},
{
"name":"其他",
"y":0
}
]
}5.错误码
| 错误码 | 说明 |
|---|---|
| 0 | 成功 |
| 10001 | 内部错误 |
| 10003 | 参数不全 |
| 10004 | 参数无效 |
| 10007 | 用户已被冻结 |
| 10008 | 权限不足 |
| 10009 | 没有权限访问接口 |
| 10010 | 文件校验失败 |
| 10011 | 文件过大 |
| 10012 | 连接中断 |
| 10013 | 操作超时 |
| 815005 | 作业提交失败(调度系统没返回) |
| 815007 | 作业提交失败(调度系统sbatch失败) |