org.apache.flink.streaming.api.transformations.SourceTransformation Java Examples
The following examples show how to use
org.apache.flink.streaming.api.transformations.SourceTransformation.
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: StreamGraphGenerator.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
/** * Transforms a {@code SourceTransformation}. */ private <T> Collection<Integer> transformSource(SourceTransformation<T> source) { String slotSharingGroup = determineSlotSharingGroup(source.getSlotSharingGroup(), Collections.emptyList()); streamGraph.addSource(source.getId(), slotSharingGroup, source.getCoLocationGroupKey(), source.getOperator(), null, source.getOutputType(), "Source: " + source.getName()); if (source.getOperator().getUserFunction() instanceof InputFormatSourceFunction) { InputFormatSourceFunction<T> fs = (InputFormatSourceFunction<T>) source.getOperator().getUserFunction(); streamGraph.setInputFormat(source.getId(), fs.getFormat()); } streamGraph.setParallelism(source.getId(), source.getParallelism()); streamGraph.setMaxParallelism(source.getId(), source.getMaxParallelism()); return Collections.singleton(source.getId()); }
Example #2
Source File: StreamGraphGenerator.java From flink with Apache License 2.0 | 6 votes |
/** * Transforms a {@code SourceTransformation}. */ private <T> Collection<Integer> transformSource(SourceTransformation<T> source) { String slotSharingGroup = determineSlotSharingGroup(source.getSlotSharingGroup(), Collections.emptyList()); streamGraph.addSource(source.getId(), slotSharingGroup, source.getCoLocationGroupKey(), source.getOperatorFactory(), null, source.getOutputType(), "Source: " + source.getName()); if (source.getOperatorFactory() instanceof InputFormatOperatorFactory) { streamGraph.setInputFormat(source.getId(), ((InputFormatOperatorFactory<T>) source.getOperatorFactory()).getInputFormat()); } int parallelism = source.getParallelism() != ExecutionConfig.PARALLELISM_DEFAULT ? source.getParallelism() : executionConfig.getParallelism(); streamGraph.setParallelism(source.getId(), parallelism); streamGraph.setMaxParallelism(source.getId(), source.getMaxParallelism()); return Collections.singleton(source.getId()); }
Example #3
Source File: FlinkStreamingTransformTranslatorsTest.java From beam with Apache License 2.0 | 6 votes |
@Test public void readSourceTranslatorBoundedWithMaxParallelism() { final int maxParallelism = 6; final int parallelism = 2; Read.Bounded transform = Read.from(new TestBoundedSource(maxParallelism)); StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); env.setParallelism(parallelism); env.setMaxParallelism(maxParallelism); SourceTransformation<?> sourceTransform = (SourceTransformation) applyReadSourceTransform(transform, PCollection.IsBounded.BOUNDED, env); UnboundedSourceWrapperNoValueWithRecordId source = (UnboundedSourceWrapperNoValueWithRecordId) sourceTransform.getOperator().getUserFunction(); assertEquals(maxParallelism, source.getUnderlyingSource().getSplitSources().size()); }
Example #4
Source File: FlinkStreamingTransformTranslatorsTest.java From beam with Apache License 2.0 | 6 votes |
@Test public void readSourceTranslatorBoundedWithoutMaxParallelism() { final int parallelism = 2; Read.Bounded transform = Read.from(new TestBoundedSource(parallelism)); StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); env.setParallelism(parallelism); SourceTransformation<?> sourceTransform = (SourceTransformation) applyReadSourceTransform(transform, PCollection.IsBounded.BOUNDED, env); UnboundedSourceWrapperNoValueWithRecordId source = (UnboundedSourceWrapperNoValueWithRecordId) sourceTransform.getOperator().getUserFunction(); assertEquals(parallelism, source.getUnderlyingSource().getSplitSources().size()); }
Example #5
Source File: FlinkStreamingTransformTranslatorsTest.java From beam with Apache License 2.0 | 6 votes |
@Test public void readSourceTranslatorUnboundedWithMaxParallelism() { final int maxParallelism = 6; final int parallelism = 2; Read.Unbounded transform = Read.from(new TestUnboundedSource()); StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); env.setParallelism(parallelism); env.setMaxParallelism(maxParallelism); OneInputTransformation<?, ?> sourceTransform = (OneInputTransformation) applyReadSourceTransform(transform, PCollection.IsBounded.UNBOUNDED, env); UnboundedSourceWrapper source = (UnboundedSourceWrapper) ((SourceTransformation) sourceTransform.getInput()).getOperator().getUserFunction(); assertEquals(maxParallelism, source.getSplitSources().size()); }
Example #6
Source File: FlinkStreamingTransformTranslatorsTest.java From beam with Apache License 2.0 | 6 votes |
@Test public void readSourceTranslatorUnboundedWithoutMaxParallelism() { final int parallelism = 2; Read.Unbounded transform = Read.from(new TestUnboundedSource()); StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); env.setParallelism(parallelism); OneInputTransformation<?, ?> sourceTransform = (OneInputTransformation) applyReadSourceTransform(transform, PCollection.IsBounded.UNBOUNDED, env); UnboundedSourceWrapper source = (UnboundedSourceWrapper) ((SourceTransformation) sourceTransform.getInput()).getOperator().getUserFunction(); assertEquals(parallelism, source.getSplitSources().size()); }
Example #7
Source File: StreamGraphGenerator.java From flink with Apache License 2.0 | 6 votes |
/** * Transforms a {@code SourceTransformation}. */ private <T> Collection<Integer> transformSource(SourceTransformation<T> source) { String slotSharingGroup = determineSlotSharingGroup(source.getSlotSharingGroup(), Collections.emptyList()); streamGraph.addSource(source.getId(), slotSharingGroup, source.getCoLocationGroupKey(), source.getOperatorFactory(), null, source.getOutputType(), "Source: " + source.getName()); int parallelism = source.getParallelism() != ExecutionConfig.PARALLELISM_DEFAULT ? source.getParallelism() : executionConfig.getParallelism(); streamGraph.setParallelism(source.getId(), parallelism); streamGraph.setMaxParallelism(source.getId(), source.getMaxParallelism()); return Collections.singleton(source.getId()); }
Example #8
Source File: DataStreamSource.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
public DataStreamSource(StreamExecutionEnvironment environment, TypeInformation<T> outTypeInfo, StreamSource<T, ?> operator, boolean isParallel, String sourceName) { super(environment, new SourceTransformation<>(sourceName, operator, outTypeInfo, environment.getParallelism())); this.isParallel = isParallel; if (!isParallel) { setParallelism(1); } }
Example #9
Source File: DataStreamSource.java From flink with Apache License 2.0 | 5 votes |
public DataStreamSource(StreamExecutionEnvironment environment, TypeInformation<T> outTypeInfo, StreamSource<T, ?> operator, boolean isParallel, String sourceName) { super(environment, new SourceTransformation<>(sourceName, operator, outTypeInfo, environment.getParallelism())); this.isParallel = isParallel; if (!isParallel) { setParallelism(1); } }
Example #10
Source File: DataStreamSource.java From flink with Apache License 2.0 | 5 votes |
/** * Constructor for new Sources (FLIP-27). */ public DataStreamSource( StreamExecutionEnvironment environment, Source<T, ?, ?> source, WatermarkStrategy<T> timestampsAndWatermarks, TypeInformation<T> outTypeInfo, String sourceName) { super(environment, new SourceTransformation<>( sourceName, new SourceOperatorFactory<>(source, timestampsAndWatermarks), outTypeInfo, environment.getParallelism())); }