org.apache.flink.optimizer.dag.BulkIterationNode Java Examples

The following examples show how to use org.apache.flink.optimizer.dag.BulkIterationNode. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BulkIterationPlanNode.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
public BulkIterationPlanNode(BulkIterationNode template, String nodeName, Channel input,
		BulkPartialSolutionPlanNode pspn, PlanNode rootOfStepFunction)
{
	super(template, nodeName, input, DriverStrategy.NONE);
	this.partialSolutionPlanNode = pspn;
	this.rootOfStepFunction = rootOfStepFunction;

	mergeBranchPlanMaps();
}
 
Example #2
Source File: BulkIterationPlanNode.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
public BulkIterationNode getIterationNode() {
	if (this.template instanceof BulkIterationNode) {
		return (BulkIterationNode) this.template;
	} else {
		throw new RuntimeException();
	}
}
 
Example #3
Source File: BulkIterationPlanNode.java    From flink with Apache License 2.0 5 votes vote down vote up
public BulkIterationPlanNode(BulkIterationNode template, String nodeName, Channel input,
		BulkPartialSolutionPlanNode pspn, PlanNode rootOfStepFunction)
{
	super(template, nodeName, input, DriverStrategy.NONE);
	this.partialSolutionPlanNode = pspn;
	this.rootOfStepFunction = rootOfStepFunction;

	mergeBranchPlanMaps();
}
 
Example #4
Source File: BulkIterationPlanNode.java    From flink with Apache License 2.0 5 votes vote down vote up
public BulkIterationNode getIterationNode() {
	if (this.template instanceof BulkIterationNode) {
		return (BulkIterationNode) this.template;
	} else {
		throw new RuntimeException();
	}
}
 
Example #5
Source File: BulkIterationPlanNode.java    From flink with Apache License 2.0 5 votes vote down vote up
public BulkIterationPlanNode(BulkIterationNode template, String nodeName, Channel input,
		BulkPartialSolutionPlanNode pspn, PlanNode rootOfStepFunction)
{
	super(template, nodeName, input, DriverStrategy.NONE);
	this.partialSolutionPlanNode = pspn;
	this.rootOfStepFunction = rootOfStepFunction;

	mergeBranchPlanMaps();
}
 
Example #6
Source File: BulkIterationPlanNode.java    From flink with Apache License 2.0 5 votes vote down vote up
public BulkIterationNode getIterationNode() {
	if (this.template instanceof BulkIterationNode) {
		return (BulkIterationNode) this.template;
	} else {
		throw new RuntimeException();
	}
}
 
Example #7
Source File: BulkIterationPlanNode.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
public BulkIterationPlanNode(BulkIterationNode template, String nodeName, Channel input,
		BulkPartialSolutionPlanNode pspn, PlanNode rootOfStepFunction, PlanNode rootOfTerminationCriterion)
{
	this(template, nodeName, input, pspn, rootOfStepFunction);
	this.rootOfTerminationCriterion = rootOfTerminationCriterion;
}
 
Example #8
Source File: BulkIterationPlanNode.java    From flink with Apache License 2.0 4 votes vote down vote up
public BulkIterationPlanNode(BulkIterationNode template, String nodeName, Channel input,
		BulkPartialSolutionPlanNode pspn, PlanNode rootOfStepFunction, PlanNode rootOfTerminationCriterion)
{
	this(template, nodeName, input, pspn, rootOfStepFunction);
	this.rootOfTerminationCriterion = rootOfTerminationCriterion;
}
 
Example #9
Source File: BulkIterationPlanNode.java    From flink with Apache License 2.0 4 votes vote down vote up
public BulkIterationPlanNode(BulkIterationNode template, String nodeName, Channel input,
		BulkPartialSolutionPlanNode pspn, PlanNode rootOfStepFunction, PlanNode rootOfTerminationCriterion)
{
	this(template, nodeName, input, pspn, rootOfStepFunction);
	this.rootOfTerminationCriterion = rootOfTerminationCriterion;
}