Hi,
What is the best way to stop jobs gracefully ?
JobOperator provides stop(executionId) method but it only sends signal, there is no guarantee that post this statement execution the job has...
Type: Posts; User: rspatyal; Keyword(s):
Hi,
What is the best way to stop jobs gracefully ?
JobOperator provides stop(executionId) method but it only sends signal, there is no guarantee that post this statement execution the job has...
Hi,
Spring batch provides specifying <transaction-attributes.. at <tasklet> level. That means, each invocation of step is executed in its own transaction boundary. is it possible to span the...
Jeff,
I wanted to experiment with Custom Reader.
Hey Jeff,
You are correct, it will be 'igroupID <= 3'. I had set it to 2 while debugging to avoid extra iterations(for 3rd group id).
Will update the post.
Hi,
I have customer table with group column (1,2,3). I have 3 records for each group.
CUSTOMER_ID GROUP_ID
----------- ---------
1 -> ...
Hi,
We are planning to use Spring batch for development of batch application.
Since this is our first time experientation with Spring batch, we are looking for best practices and guidelines...