91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Flink中Transform怎么用

發布時間:2021-12-31 10:48:12 來源:億速云 閱讀:261 作者:小新 欄目:大數據

小編給大家分享一下Flink中Transform怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

分組聚合
  String path = "E:\\GIT\\flink-learn\\flink-learn\\telemetering.txt";
        StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();

        TupleTypeInfo<Tuple3<String, Double, Long>> typeInfo = new TupleTypeInfo<>(Types.STRING, Types.DOUBLE, Types.LONG);

        TupleCsvInputFormat<Tuple3<String, Double, Long>> tupleCsvInputFormat =
                new TupleCsvInputFormat<>(new Path(path), typeInfo);

        DataStreamSource<Tuple3<String, Double, Long>> dataStreamSource = env.createInput(tupleCsvInputFormat, typeInfo);
        //或   DataStreamSource<Tuple2<String, Double>> dataStreamSource = env.readFile(tupleCsvInputFormat, path);

        SingleOutputStreamOperator<Tuple3<String, Double, Long>> operator = dataStreamSource
                .filter(Objects::nonNull)
//                .map()
//                .flatMap()
//                .keyBy(0)
                .keyBy(tuple -> tuple.f0)
                .minBy(1);
//                .min()
//                .max(1);
//                .maxBy(1, false);
//                .sum(1);
//                .reduce();
//                .process();
        operator.print().setParallelism(1);
        env.execute();
分流/合流
String path = "E:\\GIT\\flink-learn\\flink-learn\\telemetering.txt";
        StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();

        PojoTypeInfo<TelemeterDTO> typeInfo = (PojoTypeInfo<TelemeterDTO>) Types.POJO(TelemeterDTO.class);
        PojoCsvInputFormat<TelemeterDTO> inputFormat = new PojoCsvInputFormat<>(new Path(path), typeInfo, new String[]{"code", "value", "timestamp"});
        DataStreamSource<TelemeterDTO> dataStreamSource = env.createInput(inputFormat, typeInfo);

        //分流
        SplitStream<TelemeterDTO> splitStream = dataStreamSource
                .split(item -> {
                    if (item.getValue() > 100) {
                        return Collections.singletonList("high");
                    }
                    return Collections.singletonList("low");
                });

        DataStream<TelemeterDTO> highStream = splitStream.select("high");
        DataStream<TelemeterDTO> lowStream = splitStream.select("low");

        //合流
        ConnectedStreams<TelemeterDTO, TelemeterDTO> connectedStreams = lowStream.connect(highStream);
//        DataStream<TelemeterDTO> unionDataStream = lowStream.union(highStream); //需要類型一致

        SingleOutputStreamOperator<Tuple3<String, Double, Long>> operator = connectedStreams
                .map(new CoMapFunction<TelemeterDTO, TelemeterDTO, Tuple3<String, Double, Long>>() {
                    @Override
                    public Tuple3<String, Double, Long> map1(TelemeterDTO value) {
                        return Tuple3.of(value.getCode(), value.getValue(), value.getTimestamp());
                    }

                    @Override
                    public Tuple3<String, Double, Long> map2(TelemeterDTO value) {
                        return Tuple3.of(value.getCode(), value.getValue(), value.getTimestamp());
                    }
                });

        operator.print();
        env.execute();
UDF函數,提供底層支持
  • MapFunction

  • FilterFunction

  • ReduceFunction

  • ProcessFunction

  • SourceFunction

  • SinkFunction

富函數

富函數 包含了生命周期,及上下文相關信息,如

  • open() 可以在算子創建之初建立數據庫連接

  • close() 在在算子生命結束之前關閉資源

以上是“Flink中Transform怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

隆回县| 铁力市| 扶风县| 中卫市| 任丘市| 三江| 岑溪市| 惠州市| 和龙市| 成安县| 福泉市| 上饶市| 香河县| 南康市| 古浪县| 阿拉善右旗| 舒城县| 潼关县| 冀州市| 常山县| 双牌县| 博白县| 仁寿县| 琼海市| 梁河县| 英德市| 邛崃市| 布拖县| 通州市| 环江| 靖远县| 元谋县| 南川市| 东乡县| 山东省| 黔南| 文登市| 行唐县| 上思县| 基隆市| 农安县|