Spring / Spring batch Interview questions
Explain Normal processing strategy in spring Batch framework.
Normal processing refers to the batch processes that runs in a separate batch window, the data being updated is not required by on-line users or other batch processes, where concurrency would not be a concern and a single commit can be done at the end of the batch run.
Single commit point may be a concern in terms of scaiability and volume of data it could handle, it is always a good practice to have restart recovery options .
More Related questions...