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

The following examples show how to use org.apache.flink.optimizer.dag.SinkJoiner. 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: UtilSinkJoinOpDescriptor.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
@Override
public DualInputPlanNode instantiate(Channel in1, Channel in2, TwoInputNode node) {
	if (node instanceof SinkJoiner) {
		return new SinkJoinerPlanNode((SinkJoiner) node, in1, in2);
	} else {
		throw new CompilerException();
	}
}
 
Example #2
Source File: UtilSinkJoinOpDescriptor.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
public DualInputPlanNode instantiate(Channel in1, Channel in2, TwoInputNode node) {
	if (node instanceof SinkJoiner) {
		return new SinkJoinerPlanNode((SinkJoiner) node, in1, in2);
	} else {
		throw new CompilerException();
	}
}
 
Example #3
Source File: UtilSinkJoinOpDescriptor.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
public DualInputPlanNode instantiate(Channel in1, Channel in2, TwoInputNode node) {
	if (node instanceof SinkJoiner) {
		return new SinkJoinerPlanNode((SinkJoiner) node, in1, in2);
	} else {
		throw new CompilerException();
	}
}
 
Example #4
Source File: SinkJoinerPlanNode.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
public SinkJoinerPlanNode(SinkJoiner template, Channel input1, Channel input2) {
	super(template, "", input1, input2, DriverStrategy.BINARY_NO_OP);
}
 
Example #5
Source File: SinkJoinerPlanNode.java    From flink with Apache License 2.0 4 votes vote down vote up
public SinkJoinerPlanNode(SinkJoiner template, Channel input1, Channel input2) {
	super(template, "", input1, input2, DriverStrategy.BINARY_NO_OP);
}
 
Example #6
Source File: SinkJoinerPlanNode.java    From flink with Apache License 2.0 4 votes vote down vote up
public SinkJoinerPlanNode(SinkJoiner template, Channel input1, Channel input2) {
	super(template, "", input1, input2, DriverStrategy.BINARY_NO_OP);
}