Best approach using Spring batch to process big file
问题 I am using Spring batch to download a big file in order to process it. the scenario is pretty simple: 1. Download the file via http 2. process it(validations,transformations) 3. send it into queue no need to save the input file data. we might have multiple job instances(of the same scenario) running in the same time I am looking for best practice to handle this situation. Should I create Tasklet to download the file locally and than start processing it via regular steps? in that case I need