Search:

Type: Posts; User: K. Arnold; Keyword(s):

Search: Search took 0.02 seconds.

  1. Some time trial tests on my complex batch steps...

    Some time trial tests on my complex batch steps utilizing hibernate (which might be the key difference) has my transactions perform faster when I utilize the @Transaction annotation, and even faster...
  2. Another option to try is using the @Transaction...

    Another option to try is using the @Transaction annotation to create a transactional boundary. You could create separate methods to handle your insert and delete and put them in your...
  3. Thread: Last Chunk

    by K. Arnold
    Replies
    14
    Views
    2,297

    Since our dataset is so large we have provided...

    Since our dataset is so large we have provided some configurable points in our sql to our QA team to request data around time periods that they are testing.

    It is my understanding the...
  4. Thread: Last Chunk

    by K. Arnold
    Replies
    14
    Views
    2,297

    Another simple question: If I want to access the...

    Another simple question:
    If I want to access the delegate reader to set the SQL parameters, should I expose the delegate via a getter/setter, or is there a mechanism to call setParameters on the...
  5. Thread: Last Chunk

    by K. Arnold
    Replies
    14
    Views
    2,297

    As I brought that idea up to the team they...

    As I brought that idea up to the team they reminded me we still want to track total reads, total filters and total skips.

    If I group my reads then the values get off on the front end. If I wait...
  6. Thread: Last Chunk

    by K. Arnold
    Replies
    14
    Views
    2,297

    One thing that I fail to mention is that a group...

    One thing that I fail to mention is that a group of objects that I need to write will rely on multiple lines of my read.

    So it is possible that I will need 100 reads to fully compose my parent...
  7. Thread: Last Chunk

    by K. Arnold
    Replies
    14
    Views
    2,297

    Warning: My URL diagrams are more for sketching...

    Warning: My URL diagrams are more for sketching and design review then for complete accuracy, so I appologize up front if they aren't intuitive by nature.

    I'll do my best to explain, what I have...
  8. Thread: Last Chunk

    by K. Arnold
    Replies
    14
    Views
    2,297

    I first attempted to try out a custom completion...

    I first attempted to try out a custom completion policy, however, I stumbled at plugging it in correctly. I posted however I didn't get a reply. http://forum.springsource.org/showthread.php?t=78628...
  9. Thread: Last Chunk

    by K. Arnold
    Replies
    14
    Views
    2,297

    I am running into a case where I want to use the...

    I am running into a case where I want to use the Transaction that was being used during the step. In the afterStep the transaction is closed and any attempts to access the session cause a session...
  10. Thread: Last Chunk

    by K. Arnold
    Replies
    14
    Views
    2,297

    Last Chunk

    Is there anyway to know you are dealing with your last chunk?


    I wanted to do an afterChunk only on the last chunk that is being processed. Is there a mechanism to look up this kind of...
  11. Replies
    1
    Views
    623

    It looks like you can do this in the afterStep...

    It looks like you can do this in the afterStep annotation.


    @AfterStep
    public ExitStatus afterStep(StepExecution stepExecution) {
    stepExecution.setFilterCount(filterCount);
  12. Replies
    1
    Views
    623

    Custom Filter

    I was looking into a custom filter problem, and the only hint I found on the samples page references the following.



    Due to some completion policy limitations we decided to drop the...
  13. Replies
    0
    Views
    724

    Creating a Custom Completion Policy.

    I'm trying to understand how to create a custom completion policy. I am not sure if I should be using a custom completion policy or some other mechanism.

    My use case:

    Utilizing a CursorReader...
  14. I wanted a way to dynamically assign my...

    I wanted a way to dynamically assign my preparedsetter. So I needed the setter in code and not in the xml file.
  15. I ended up extending the JdbcCursorItemReader and...

    I ended up extending the JdbcCursorItemReader and utilizing the @BeforeStep to set my PreparedStatementSetter
  16. JdbcCursorItemReader - Setting PreparedStatementSetter

    Hello --

    I am learning how to utilize the JdbcCursorItemReader within a Job. I started with the Spring Batch sample and created a working job that will read from a source of data and write to...
Results 1 to 16 of 16