Hello
My use case is somewhat like this. We need to process 10 different items using the same step. Each time the step is executed, we need to partition say 2 items so they can run parallelly. Once 2 partitions are completed the step should repeat itself to process the next 2 items.
1) But what im noticising is, the second run of loopStep , the partition happens but it is not executing batchValidate again?Code:<step id="loopStep" next="loopDecision"> <partition step="batchValidate" partitioner="partitioner"> <handler task-executor="taskExecutor"/> </partition> </step>
2) Also i need to repeat the loopStep only when the individual partitions have executed.
Please let me know if you need more code or what am i doing wrong?
Thanks
Srinivas


Reply With Quote