Hi all,
I am using Quarz library integrated with Spring:
<bean id="schedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property...
Type: Posts; User: zeta; Keyword(s):
Hi all,
I am using Quarz library integrated with Spring:
<bean id="schedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property...
HI again,
sorry, I just wanted to clarify that finally maxRow did not resolve our issue. We wanted stream out our customers and we are using Mysql so our final configuration for our reader was:
...
Hello,
I think we solved our problem:
maxRows Sets the limit for the maximum number of rows the underlying ResultSet can hold at any one time.
is a property of an Statement(jconnector api)...
Hi to all again,
after using another tool for profiling(jmap), we could see that the number of Customer instances keeps constant all the time(around 10000 customer/chunk). The dump of jmap shown...
Hi all, our use case is a simple batch repeat. My job configuration:
<batch:job id="job" job-repository="jobRepository">
<batch:step id="step1" next="step2">
<batch:tasklet...
Hi all,
my use case is a simple batch repeat.
My job configuration:
<batch:job id="job" job-repository="jobRepository">
<batch:step id="step1" next="step2">
...
Ei,
thanks. Finally I did my own preparedStatementSetter:
public class CustomerReaderPreparedStatementSetter implements
PreparedStatementSetter, InitializingBean {
private...
Hi,
I have a class which extends from PropertyPlaceholderConfigurer(which extends from PropertyResourceConfigurer which extends from PropertiesLoaderSupport). My log configuration has Spring log...
Hi,
I have read about ListPreparedStatementSetter, listeners, JobContext, StepContext, etc. but, I need to set the sql parameters dynamically and I do not want to pass as a job parameters. Could...
Sorry, I wanted to say: "and thus, it could NOT be able to be parallelized" :D
Hi,
thinking about the problem, I really believe that the code above cannot be "translate" to Spring batch. In order to allow having different times to executeBatch/commit, the itemWriter...
Well, thats the point: with traditional jdbc i would have:
Connection updateConn = null;
Connection selectConn = null;
Statement st = null;
PreparedStatement ps...
Hi,
i know both post are kind of older but i would really appreciate some explanation.
Thanks!
hi to all,
we have an automatic process to execute some database updates and file translation every 30 minuts. We need a backoffice to give the opportunity to the user of forcing the automatic...