diff --git a/src/site/docbook/reference/job.xml b/src/site/docbook/reference/job.xml index a7065714e..f6b8dae94 100644 --- a/src/site/docbook/reference/job.xml +++ b/src/site/docbook/reference/job.xml @@ -1045,11 +1045,11 @@ jobOperator.stop(executions.iterator().next()); ]]> A job execution which is FAILED can be restarted (if the Job is restartable). A job execution whose status is - ABORTED will not be restarted by the framework. - The ABORTED status is also used in step + ABANDONED will not be restarted by the framework. + The ABANDONED status is also used in step executions to mark them as skippable in a restarted job execution: if a job is executing and encounters a step that has been marked - ABORTED in the previous failed job execution, it + ABANDONED in the previous failed job execution, it will move on to the next step (as determined by the job flow definition and the step execution exit status). @@ -1058,7 +1058,7 @@ jobOperator.stop(executions.iterator().next()); ]]> no way of knowing because no-one told it before the process died. You have to tell it manually that you know that the execution either failed or should be considered aborted (change its status to - FAILED or ABORTED) - it's + FAILED or ABANDONED) - it's a business decision and there is no way to automate it. Only change the status to FAILED if it is not restartable, or if you know the restart data is valid. There is a utility in Spring Batch