Just one more question, I promise ! :)
Could it be possible to contribute to this project ?
I didn't see any link to contribute on the site.
I follow this project since 6 months now and I think...
Type: Posts; User: Edouard; Keyword(s):
Just one more question, I promise ! :)
Could it be possible to contribute to this project ?
I didn't see any link to contribute on the site.
I follow this project since 6 months now and I think...
Ok thanks for answers !
Thanks, Dave.
The partition is a good solution.
But something is strange, the majority of readers are not thread-safe and by default, a step is multi-threaded.
A JIRA seem to say it's difficult...
Hi
Is the JdbcCursorItemReader thread-safe ?
I ask the question because if the verifyCursorPosition is true, the reader throws a exception.
(I'm using SB 2.0.0)
Thanks for answers.
April 15th.
Everything here :
http://jira.springframework.org/browse/BATCH?report=com.atlassian.jira.plugin.system.project:roadmap-panel
Hello,
I am using Spring 2.0 M3 and I have some difficulties to configure retry policy, skip policy and others.
In my business ItemProcessor, I throw a specific exception if I don't find a...
Is it possible to see the XML header of your configuration file ?
If you can use Java, I think Spring Batch is perfect for you.
It's true currently, there is no documentation.
But you can read the spring-batch-2.0.xsd for the complete list of the attributes.
If you use only Spring Beans for job configuration, look at the...
I think it is not the good place for this question.
You should configure your settings.xml to add the SpringSource Repository :
<repository>
<id>spring-milestone</id>
<name>Spring Milestone Repository</name>...
I have just one question about asynchronous execution.
The taskExecutor configuration for flow split will be available in Milestone 4 ?
You can use any implementations of DataSource.
Personally I use C3P0 like this :
<bean id="datasource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass"...
In Spring Batch 2.0, we can use FlowJob, isn't it ?
It's possible to execute 5 steps asynchronously in the same flow, I guess.
But you should wait April for the release version and the...
Just a idea !
Maybe you can verify persisted data at the server startup !
Any running jobs in database will be changed to failed status at the startup.
I am sorry to insist but I test following configurations :
This one works well :
<bean id="databaseJob" parent="abstractJob">
<property name="name" value="databaseJob" />
<property...
I am sorry to insist but I test following configurations :
This one works well :
<bean id="databaseJob" parent="abstractJob">
<property name="name" value="databaseJob" />
<property...
sorry
I register the ItemReader as stream in the step and a ReaderNotOpenException is always thrown.
I try to debug the application :
The ItemReader is opened but it does not seem the same...
if I can make a point, I think that it is not following the Spring Batch philosophy.
A step transforms a item "one by one" (not really but you can think like this).
So, you make one step with...
Hello,
I try to test the possibilities of the step scope (I use the milestone 3).
So, first of all, I have used a sample with fileReader and dbWriter (football sample).
I have added a step...
I change the method synchronizeStatus in the JdbcJobExecution class,
I add the version update when the status is updated.
public void synchronizeStatus(JobExecution jobExecution) {
String...
Hello,
I work for a batch execution system for my company and we plan to use Spring Batch 2.0.
During my tests, I try to stop a job and I observe that it do not work.
It throws a...