Search:

Type: Posts; User: zeta; Keyword(s):

Search: Search took 0.02 seconds.

  1. SchedulerFactory does noet shutdown if exception while connection factory creation

    Hi all,

    I am using Quarz library integrated with Spring:


    <bean id="schedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
    <property...
  2. Replies
    3
    Views
    511

    HI again, sorry, I just wanted to clarify that...

    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:

    ...
  3. Replies
    3
    Views
    511

    Hello, I think we solved our problem: ...

    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)...
  4. Replies
    3
    Views
    511

    Hi to all again, after using another tool for...

    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...
  5. Replies
    3
    Views
    511

    Out of memory issue(Memory leak)

    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...
  6. Help with no-rollback-exception-classes configuring

    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">
    ...
  7. Ei, thanks. Finally I did my own...

    Ei,
    thanks. Finally I did my own preparedStatementSetter:
    public class CustomerReaderPreparedStatementSetter implements
    PreparedStatementSetter, InitializingBean {

    private...
  8. Spring log configuration has ERROR level but PropertiesLoaderSupport class outputs

    Hi,

    I have a class which extends from PropertyPlaceholderConfigurer(which extends from PropertyResourceConfigurer which extends from PropertiesLoaderSupport). My log configuration has Spring log...
  9. How to pass dynamically params to sql when using JdbcCursorItemReader

    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...
  10. Replies
    6
    Views
    8,823

    Sorry, I wanted to say: "and thus, it could NOT...

    Sorry, I wanted to say: "and thus, it could NOT be able to be parallelized" :D
  11. Replies
    6
    Views
    8,823

    Hi, thinking about the problem, I really...

    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...
  12. Replies
    6
    Views
    8,823

    Well, thats the point: with traditional jdbc i...

    Well, thats the point: with traditional jdbc i would have:

    Connection updateConn = null;
    Connection selectConn = null;
    Statement st = null;
    PreparedStatement ps...
  13. Replies
    6
    Views
    8,823

    Is there any response to this question

    Hi,
    i know both post are kind of older but i would really appreciate some explanation.
    Thanks!
  14. Replies
    0
    Views
    417

    Problems when using transactions

    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...
Results 1 to 14 of 14