use of io.cdap.cdap.etl.api.batch.BatchConfigurable in project cdap by caskdata.
the class PipelinePhasePreparer method prepare.
/**
* Prepare all the stages in the given phase and return Finishers that must be run when the pipeline completes.
*
* @param phaseSpec the pipeline phase to prepare
* @return list of finishers that should be run when the pipeline ends
*/
public List<Finisher> prepare(PhaseSpec phaseSpec) throws TransactionFailureException, InstantiationException, IOException {
PipelinePluginInstantiator pluginInstantiator = getPluginInstantiator(phaseSpec);
PipelinePhase phase = phaseSpec.getPhase();
List<Finisher> finishers = new ArrayList<>();
// call prepareRun on each stage in order so that any arguments set by a stage will be visible to subsequent stages
for (String stageName : phase.getDag().getTopologicalOrder()) {
StageSpec stageSpec = phase.getStage(stageName);
String pluginType = stageSpec.getPluginType();
boolean isConnectorSource = Constants.Connector.PLUGIN_TYPE.equals(pluginType) && phase.getSources().contains(stageName);
boolean isConnectorSink = Constants.Connector.PLUGIN_TYPE.equals(pluginType) && phase.getSinks().contains(stageName);
SubmitterPlugin submitterPlugin;
if (BatchSource.PLUGIN_TYPE.equals(pluginType) || isConnectorSource) {
BatchConfigurable<BatchSourceContext> batchSource = pluginInstantiator.newPluginInstance(stageName, macroEvaluator);
submitterPlugin = createSource(batchSource, stageSpec);
} else if (BatchSink.PLUGIN_TYPE.equals(pluginType) || AlertPublisher.PLUGIN_TYPE.equals(pluginType) || isConnectorSink) {
BatchConfigurable<BatchSinkContext> batchSink = pluginInstantiator.newPluginInstance(stageName, macroEvaluator);
submitterPlugin = createSink(batchSink, stageSpec);
} else if (Transform.PLUGIN_TYPE.equals(pluginType) || ErrorTransform.PLUGIN_TYPE.equals(pluginType)) {
Transform<?, ?> transform = pluginInstantiator.newPluginInstance(stageName, macroEvaluator);
submitterPlugin = createTransform(transform, stageSpec);
} else if (BatchAggregator.PLUGIN_TYPE.equals(pluginType)) {
Object plugin = pluginInstantiator.newPluginInstance(stageName, macroEvaluator);
if (plugin instanceof BatchAggregator) {
BatchAggregator<?, ?, ?> aggregator = (BatchAggregator) plugin;
submitterPlugin = createAggregator(aggregator, stageSpec);
} else if (plugin instanceof BatchReducibleAggregator) {
BatchReducibleAggregator<?, ?, ?, ?> aggregator = (BatchReducibleAggregator) plugin;
submitterPlugin = createReducibleAggregator(aggregator, stageSpec);
} else {
throw new IllegalStateException(String.format("Aggregator stage '%s' is of an unsupported class '%s'.", stageSpec.getName(), plugin.getClass().getName()));
}
} else if (BatchJoiner.PLUGIN_TYPE.equals(pluginType)) {
Object plugin = pluginInstantiator.newPluginInstance(stageName, macroEvaluator);
if (plugin instanceof BatchJoiner) {
BatchJoiner<?, ?, ?> batchJoiner = (BatchJoiner<?, ?, ?>) plugin;
submitterPlugin = createJoiner(batchJoiner, stageSpec);
} else if (plugin instanceof BatchAutoJoiner) {
BatchAutoJoiner batchJoiner = (BatchAutoJoiner) plugin;
validateAutoJoiner(batchJoiner, stageSpec);
submitterPlugin = createAutoJoiner(batchJoiner, stageSpec);
} else {
throw new IllegalStateException(String.format("Join stage '%s' is of an unsupported class '%s'.", stageSpec.getName(), plugin.getClass().getName()));
}
} else if (SplitterTransform.PLUGIN_TYPE.equals(pluginType)) {
SplitterTransform<?, ?> splitterTransform = pluginInstantiator.newPluginInstance(stageName, macroEvaluator);
submitterPlugin = createSplitterTransform(splitterTransform, stageSpec);
} else {
submitterPlugin = create(pluginInstantiator, stageSpec);
}
if (submitterPlugin != null) {
submitterPlugin.prepareRun();
finishers.add(submitterPlugin);
}
}
return finishers;
}
Aggregations