spring-batch
spring-batch copied to clipboard
Spring Batch is a framework for writing batch applications using Java and Spring
`JsrPartitionHandlerTests.testPollingPartitionsCompletion` fails intermittently on windows with the following error: ``` java.lang.AssertionError at org.springframework.batch.core.jsr.partition.JsrPartitionHandlerTests.testPollingPartitionsCompletion(JsrPartitionHandlerTests.java:156) ``` That's all from the build log, no additional stacktrace from surefire's individual test report neither. NB:...
`ConcurrentTransactionAwareProxyTests` fails intermittently on windows. As a side note, the only production usage of `ConcurrentTransactionAwareProxy` is in `MapExecutionContextDao` which is deprecated for removal.
Add support to read data from and write data to Redis based on Spring Data Redis. Reference: https://stackoverflow.com/questions/24703753/does-spring-batch-have-a-redis-itemreader-in-the-roadmap
**[Quinton McCombs](https://jira.spring.io/secure/ViewProfile.jspa?name=quintonm)** opened **[BATCH-1767](https://jira.spring.io/browse/BATCH-1767?redirect=false)** and commented It appears that if the commit fails, spring batch will get an OptimisticLockingFailureException when it tries to revert the changes to the step execution....
As of 4.3, the [section](https://docs.spring.io/spring-batch/docs/4.3.x/reference/html/spring-batch-integration.html#externalizing-batch-process-execution) related to `RemoteChunking[Manager/Worker]Builder` and `RemotePartitioning[Manager/Worker]Builder` APIs provides only the Java configuration style for code examples. The equivalent XML samples based on the `batch-integration` namespace are...
**[Shakti Tripathy](https://jira.spring.io/secure/[email protected])** opened **[BATCH-2854](https://jira.spring.io/browse/BATCH-2854?redirect=false)** and commented If a table alias is given along with the column name for a sort key e.g. JdbcPagingItemReader reader = new JdbcPagingItemReader(); PostgresPagingQueryProvider provider =...
I'm referring to [5.1.5. Configuring Skip Logic](https://docs.spring.io/spring-batch/docs/current/reference/html/index-single.html#configuringSkip) and [5.1.7. Controlling Rollback](https://docs.spring.io/spring-batch/docs/current/reference/html/index-single.html#controllingRollback) of the Spring batch reference documentation. I think, the current documentation does not accurately document the current functionality and...
The exception is thrown with a message containing `jobParameters` , which is not what is used in the if to do the check. https://github.com/spring-projects/spring-batch/blob/d24eb6a6eda857c9a6123795c76b11264622894e/spring-batch-core/src/main/java/org/springframework/batch/core/repository/support/SimpleJobRepository.java#L140 Exists since 3.0.10.RELEASE at least.
Resolves #4479
**Bug description** When FaultTolerantChunkProcessor's method process throw a exeception(not the retriable exception), the method process will execute once more. **Environment** The version of the spring-batch-core that I use is 5.0.3....