Flink基于集合的Source2
Posted 猫猫爱吃小鱼粮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flink基于集合的Source2相关的知识,希望对你有一定的参考价值。
Flink基于集合的Source2
基于集合的Source,该类Source通常就是为了做测试或实验的,不用于生产环境
fromElements创建的DataStream是一个有限的数据流,读取完数据就程序就退出了
import org.apache.flink.streaming.api.datastream.DataStreamSource;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;
import java.util.Arrays;
import java.util.List;
/**
* 基于集合的Source,该类Source通常就是为了做测试或实验的,不用于生产环境
* fromElements创建的DataStream是一个有限的数据流,读取完数据就程序就退出了
*/
public class CollectionSource2
public static void main(String[] args) throws Exception
StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();
DataStreamSource<Integer> numStream = env.fromElements(1, 2, 3, 4, 5, 6, 7, 8, 10);
System.out.println("ffromElements创建的DataStreamSource的并行度为:" + numStream.getParallelism());
numStream.print();
env.execute();
以上是关于Flink基于集合的Source2的主要内容,如果未能解决你的问题,请参考以下文章
7.FLINK Source基于集合基于文件基于Socket自定义Source--随机订单数量自定义Source自定义Source-MySQL