Skip to content

作业

查询核心数状态统计信息

1.接口说明

接口路径:/hpc/openapi/v2/view/cpucore/state

请求方式:GET

请求数据类型:

接口描述:查询核心数状态统计信息,状态分为已使用、未使用、不可用

2.请求消息

请求参数:

Headers:

名称类型必填描述示例
tokenstring接口凭证eyJhbGciOiJIUzI1N...

3.请求示例

cURL请求示例

shell
curl --location 'https://scnet-demo.accloud.cn/hpc/openapi/v2/view/cpucore/state' \
--header 'Content-Type: application/json' \
--header 'token: <Token>'

Java请求示例

java
import okhttp3.*;

public class QueryCoreSumStateDemo {

    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/cpucore/state")
                .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/cpucore/state"
payload = {}
headers = {
  "Content-Type": "application/json",
  "token": "<Token>"
}

response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)

4.响应消息

返回参数:

名称类型描述示例
codestring返回码,0为正常0
msgstring信息success
dataarray核心统计信息
namestringCPU核心状态已使用
yintCPU核心个数1

返回示例:

json
{
  "code":"0",
  "msg":"success",
  "data":[
    {
      "name":"已使用",
      "y":21
    },
    {
      "name":"未使用",
      "y":11
    },
    {
      "name":"不可用",
      "y":0
    }
  ]
}

5.错误码

错误码说明
0成功
10001内部错误
10003参数不全
10004参数无效
10007用户已被冻结
10008权限不足
10009没有权限访问接口
10010文件校验失败
10011文件过大
10012连接中断
10013操作超时
815005作业提交失败(调度系统没返回)
815007作业提交失败(调度系统sbatch失败)