You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A partitioned Step fails if an Exception is thrown from Partitioner.partition(). On retry Partitioner.partition() does not throw an exception and returns a valid partition map, but the partitioned Step does not run.
Bug description
A partitioned Step fails if an Exception is thrown from
Partitioner.partition()
. On retryPartitioner.partition()
does not throw an exception and returns a valid partition map, but the partitioned Step does not run.Environment
Spring Batch 5.1.2
Steps to reproduce
Define a partitioned step like this:
Implement a custom
myPartitioner
. It is possible that an Exception ist thrown from itspartition()
method.After the retry the contents of BATCH_STEP_EXECUTION looks like this
Expected behavior
myStep
should be executed on retry. After the retry the contents of BATCH_STEP_EXECUTION should look like thisThe text was updated successfully, but these errors were encountered: