接口
changeJobPriority
参数
参数 | 类型 | 是否必需 | 说明 |
---|---|---|---|
jobId | String | 是 | 作业ID |
priority | int | 是 | 作业优先级, [0,1000]范围内的整数指定, 优先级数值越高表示作业调度时的优先级越高。 |
返回值
修改成功后返回一个 ChangeJobResponse
实例。修改失败后,抛出异常: ClientException
。
例子
Java源码
import com.aliyuncs.batchcompute.main.v20151111.*;
import com.aliyuncs.batchcompute.model.v20151111.*;
import com.aliyuncs.exceptions.ClientException;
public class ChangeJobPriority {
static String ACCESS_KEY_ID = "xxx"; //这里填写您的 AccessKeyId
static String ACCESS_KEY_SECRET = "xxx"; //这里填写您的 AccessKeySecret
static String REGION_ID = "cn-xxx"; //这里填写 region
static String jobId = "job-000000005BE3E897000007FA00114EE9";
public static void main(String[] args) {
BatchCompute client = new BatchComputeClient(REGION_ID, ACCESS_KEY_ID, ACCESS_KEY_SECRET);
try{
ChangeJobPriorityResponse response = client.changeJobPriority(jobId, 2);
//成功
System.out.println("RequestId: " + response.getRequestId());
System.out.println("StatusCode: " + response.getStatusCode());
}catch(ClientException e){
e.printStackTrace();
//失败
}
}
}
执行结果:
{
RequestId: null
StatusCode: 200
}
注意
当作业的状态为 Stopped 或者 Failed 才可以调用该接口修改作业优先级。
文档内容是否对您有帮助?