Eduard,
Which DB platform are you using? Based on the information in this thread, it appears that your DB platform is not scaling very well when the record count in your BATCH_EXECUTION_CONTEXT...
Type: Posts; User: malikh; Keyword(s):
Eduard,
Which DB platform are you using? Based on the information in this thread, it appears that your DB platform is not scaling very well when the record count in your BATCH_EXECUTION_CONTEXT...
JIRA link for this issue:
https://jira.springsource.org/browse/BATCH-1427
This is not a burning issue for me. But would appreciate if it could be addressed. Thanks.
I am using Spring Batch 2.0.3.
SimpleRetryExceptionHandler treats AbstractStep$FatalException as a non-fatal exception and allows Spring Batch to continue processing. Shouldn't...
Just created an issue on the issue tracker:
http://jira.springframework.org/browse/BATCH-1418
PROBLEM DESCRIPTION: Upon restarting a failed step, the reader (FlatFileItemReader) tries to parse the file from the beginning as it tries to reach the point from where it has to pick up after the...
Dave,
I need similar behavior because my feed file has certain double value columns that can be empty. And the double value columns map to my prototype bean's attributes that are declared as...
OK. This is very helpful. Thank you.
For now, I am going to create my own LineTokenizer (basically the same as AbstractLineTokenizer and DelimitedLineTokenizer with minor tweaks) to ignore columns...
Actually, I am getting NotWritablePropertyException from the BeanWrapperFieldSetMapper. This makes sense since my prototype bean has no property called "skipColumn".
Writing a custom...
I am a new adopter of Spring Batch (version 1.1.3.RELEASE-A). My team processes several delimited feed files where we often have to skip columns that are of no interest to us.
I am trying to use a...