partitioner « Batch « Spring Q&A





1. Spring Batch custom partitioner for input file    stackoverflow.com

I'm trying to partition a flat input file containing ; separated items. the first item on a line indicates a category and I would like to partition on this category so that ...

2. Spring Batch GridTaskPartition not working for partitioner scope=step    stackoverflow.com

I have the following config and code in spring batch. I receive the exception.

<step id="PROCESS_FILE_TO_STAGING_TABLE_PARALLEL" next="limitDecision" >
<partition handler="partitionHandler" step="filestep" partitioner="filepartitioner" />
</step>

<bean id="partitionHandler"
class="sa.com.mobily.loader.partition.gridgain.GridGainPartitionHandler" />

<bean id="filepartitioner" class="org.springframework.batch.core.partition.support.MultiResourcePartitioner" scope="step" >
<property name="resources" value="#{dataMapprocessFiles}"/>
</bean>
code PartitionProvider
public ...

3. Spring Batch GridTaskPartition not working for partitioner scope=step    forum.springsource.org

Spring Batch GridTaskPartition not working for partitioner scope=step I have the following config in spring batch HTML Code: