Takashi Nishigaya created WFLY-4427:
---------------------------------------
Summary: Step status of the failed step by <fail> element becomes
COMPLETED.
Key: WFLY-4427
URL:
https://issues.jboss.org/browse/WFLY-4427
Project: WildFly
Issue Type: Bug
Components: Batch
Affects Versions: 8.2.0.Final
Reporter: Takashi Nishigaya
Assignee: Cheng Fang
Assuming the following job definition, if STEP1 returns "1" as the exit status,
the job status becomes FAILED. But the step status is COMPLETED.
{noformat}
job status: FAILED
step: STEP1, step status: COMPLETED
{noformat}
{noformat}
<job id="batch-job1" version="1.0"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/jobXML_1_0.xsd ">
<step id="STEP1">
<batchlet ref="TestBatchlet1" />
<next on="0" to="STEP2" />
<fail on="1" exit-status="FAILED_BY_EXIT_STATUS" />
</step>
<step id="STEP2">
<batchlet ref="TestBatchlet2" />
</step>
</job>
{noformat}
In this case, we can not restart the failed job from the failed step STEP1.
This behavior is correct based on the description of 10.8 Restart Processing, 3. a. in JSR
352.
But it is not expected result.
{quote}
10.8 Restart Processing
3. Starting at the restart position, each execution element is re-examined to determine if
it should re-execute:
a. If the execution element is a COMPLETED step that specifies allow-restart-if-
complete=false, then follow the transition to the next
execution element based on the exit status for this step from the previous execution.
{quote}
On the other hand, If the STEP1 is failed by throwing an exception, both of the resulting
job status and the step status are FAILED.
{noformat}
job status: FAILED
step: STEP1, step status: FAILED
{noformat}
In this case, restarting the failed job is correctly executed, because the step status is
FAILED.
I think the step status of the failed step should be FAILED in both cases. But the section
"8.6.2 Fail Element" of JSR352 says nothing about what step status value must be
exposed after failed.
This behavior is the same in GlassFish 4 and WildFly 8.2.
So, I want to know what is the correct specification or intended behavior.
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)