public class PartitionStepBuilder extends StepBuilderHelper<PartitionStepBuilder>
PartitionStep instances. A partition step executes the same step (possibly remotely)
multiple times with different input parameters (in the form of execution context). Useful for parallelization.StepBuilderHelper.CommonStepPropertieslogger| Constructor and Description |
|---|
PartitionStepBuilder(StepBuilderHelper<?> parent)
Create a new builder initialized with any properties in the parent.
|
| Modifier and Type | Method and Description |
|---|---|
PartitionStepBuilder |
aggregator(StepExecutionAggregator aggregator)
Provide a step execution aggregator for aggregating partitioned step executions into a single result for the
PartitionStep itself. |
Step |
build() |
PartitionStepBuilder |
gridSize(int gridSize)
A hint to the
splitter(StepExecutionSplitter) about how many step executions are required. |
PartitionStepBuilder |
partitioner(String slaveStepName,
Partitioner partitioner)
Add a partitioner which can be used to create a
StepExecutionSplitter. |
PartitionStepBuilder |
partitionHandler(PartitionHandler partitionHandler)
Provide an explicit partition handler that will carry out the work of the partition step.
|
PartitionStepBuilder |
splitter(StepExecutionSplitter splitter)
Provide an explicit
StepExecutionSplitter instead of having one build from the
partitioner(String, Partitioner). |
PartitionStepBuilder |
step(Step step)
Provide an actual step instance to execute in parallel.
|
PartitionStepBuilder |
taskExecutor(org.springframework.core.task.TaskExecutor taskExecutor)
Provide a task executor to use when constructing a
PartitionHandler from the step(Step). |
allowStartIfComplete, enhance, getJobRepository, getName, getTransactionManager, isAllowStartIfComplete, listener, repository, startLimit, transactionManagerpublic PartitionStepBuilder(StepBuilderHelper<?> parent)
parent - a parent helper containing common step propertiespublic PartitionStepBuilder partitioner(String slaveStepName, Partitioner partitioner)
StepExecutionSplitter. Use either this or an explicit
splitter(StepExecutionSplitter) but not both.slaveStepName - the name of the slave step (used to construct step execution names)partitioner - a partitioner to usepublic PartitionStepBuilder step(Step step)
partitionHandler(PartitionHandler) is provided, the step is optional and is only used to extract
configuration data (name and other basic properties of a step).step - a step to execute in parallelpublic PartitionStepBuilder taskExecutor(org.springframework.core.task.TaskExecutor taskExecutor)
PartitionHandler from the step(Step). Mainly
used for running a step locally in parallel, but can be used to execute remotely if the step is remote. Not used
if an explicit partitionHandler(PartitionHandler) is provided.taskExecutor - a task executor to use when executing steps in parallelpublic PartitionStepBuilder partitionHandler(PartitionHandler partitionHandler)
partitionHandler - a partition handlerfor setting up a default handler that works with a local or remote Steppublic PartitionStepBuilder gridSize(int gridSize)
splitter(StepExecutionSplitter) about how many step executions are required. If running
locally or remotely through a taskExecutor(TaskExecutor) determines precisely the number of step
execution sin the first attempt at a partition step execution.gridSize - the grid sizepublic PartitionStepBuilder splitter(StepExecutionSplitter splitter)
StepExecutionSplitter instead of having one build from the
partitioner(String, Partitioner). USeful if you need more control over the splitting.splitter - a step execution splitterpublic PartitionStepBuilder aggregator(StepExecutionAggregator aggregator)
PartitionStep itself. Default is a simple implementation that works in most cases.aggregator - a step execution aggregatorpublic Step build()
Copyright © 2013. All rights reserved.