Hello,
I'm new to Spring Integration and would like some advice on how to architect a new system.
I want to transfer messages from one queue to another queue, and run a system process whenever...
Type: Posts; User: aquinn; Keyword(s):
Hello,
I'm new to Spring Integration and would like some advice on how to architect a new system.
I want to transfer messages from one queue to another queue, and run a system process whenever...
Hello,
I wrote a delegating ItemReader as Dave Syer suggested which works just fine (see code below).
Thanks for your help Dave!
Antony
/**
* Implementation of {@link JobRepository} that allows partitioned steps to run on remote nodes with no access
* to the job repository on the master node.
*
* @author Antony Quinn
*...
Hello,
I got this working by using a "dummy" job repository on the remote node:
public class RemoteJobRepository implements JobRepository {
...
Done:
http://jira.springframework.org/browse/BATCH-1293
Hello,
spring-batch-core-2.0.1.RELEASE-sources.jar is missing from the Maven central repository. Is this an oversight or a change in policy?
Cheers,
Antony
Hello,
I need an ItemReader for FASTA files. Unfortunately the format of FASTA files seems to preclude the use of FlatFileItemReader.
The problem is that there is a no way of recognising the...
Dave,
Thanks for the reply, I thought this might be the case.
For the job repositories, I will use a MySQL database on the local node and in-memory off-the-shelf implementations for the remote...
Hello,
I've written a PartitionHandler for a compute grid framework that executes steps on remote machines. These machines may be on the same network as the master step, or they may be on...
Hello,
I would like to know if Spring Batch can be used to run jobs on compute grids and local clusters.
We run third-party Perl scripts and C binaries to perform CPU-intensive analyses on...