-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One more chunk will be executed even if a job is stopped #4631
Comments
Thank you for opening this issue. However, I think there is misuse of the APIs according to the description you gave:
So if you want to stop a step after a given chunk, you need to set the import org.springframework.batch.core.ChunkListener;
import org.springframework.batch.core.launch.JobOperator;
import org.springframework.batch.core.scope.context.ChunkContext;
public class MyChunkListener implements ChunkListener {
// private JobOperator jobOperator;
private int maxChunks;
// constructor omitted
@Override
public void afterChunk(ChunkContext context) {
if (++maxChunks > 10) {
// jobOperator.stop(context.getStepContext().getStepExecution().getJobExecutionId()); // this is incorrect
context.getStepContext().getStepExecution().setTerminateOnly();
}
}
} Do you see the point? |
I got your point. I want to change my question. I understand that we can use different ways to stop chunk processing in listeners but what if we want to stop the chunk processing not in a listener but only using |
Please do a quick search on Github issues first, there might be already a duplicate issue for the one you are about to create.
If the bug is trivial, just go ahead and create the issue. Otherwise, please take a few moments and fill in the following sections:
Bug description
A clear and concise description of what the bug is about.
If a job is stopped in ChunkListener#afterChunk,
termainateOnly
is not set.Environment
Please provide as many details as possible: Spring Batch version, Java version, which database you use if any, etc
I assume this happens to all environments.
Steps to reproduce
Steps to reproduce the issue.
JobOperator#stop in ChunkListener#afterChunk then it will still run the next chunk.
Expected behavior
A clear and concise description of what you expected to happen.
The next chunk shouldn't run.
Minimal Complete Reproducible example
Please provide a failing test or a minimal complete verifiable example that reproduces the issue.
Bug reports that are reproducible will take priority in resolution over reports that are not reproducible.
The text was updated successfully, but these errors were encountered: