暂停和恢复作业执行春季批处理

时间:2019-04-09 11:23:58

标签: spring-batch

在这里有同样的问题-

Spring batch pause/resume vs stop/restart

我在春季检查了BatchStatus枚举,没有可用的暂停状态,这里仅作为用例提供,没有详细信息-

https://docs.spring.io/spring-batch/2.1.x/cases/pause.html

1 个答案:

答案 0 :(得分:0)

为此使用作业运算符,它是提供停止,重启,getStatus等功能的基本界面

public interface JobOperator {

List<Long> getExecutions(long instanceId) throws NoSuchJobInstanceException;

List<Long> getJobInstances(String jobName, int start, int count)
      throws NoSuchJobException;

Set<Long> getRunningExecutions(String jobName) throws NoSuchJobException;

String getParameters(long executionId) throws NoSuchJobExecutionException;

Long start(String jobName, String parameters)
      throws NoSuchJobException, JobInstanceAlreadyExistsException;

Long restart(long executionId)
      throws JobInstanceAlreadyCompleteException, NoSuchJobExecutionException,
              NoSuchJobException, JobRestartException;

Long startNextInstance(String jobName)
      throws NoSuchJobException, JobParametersNotFoundException, JobRestartException,
             JobExecutionAlreadyRunningException, JobInstanceAlreadyCompleteException;

boolean stop(long executionId)
      throws NoSuchJobExecutionException, JobExecutionNotRunningException;

String getSummary(long executionId) throws NoSuchJobExecutionException;

Map<Long, String> getStepExecutionSummaries(long executionId)
      throws NoSuchJobExecutionException;

Set<String> getJobNames();

}

这是一个例子

JOB_OPERATOR EXAMPLE