flink time 与 window

Event Time 事件事件

Processing Time 处理事件

Ingestion Time 摄取事件


package com.demo.datastream.window;

import org.apache.flink.api.common.functions.MapFunction;
import org.apache.flink.api.common.functions.ReduceFunction;
import org.apache.flink.api.common.state.ReducingState;
import org.apache.flink.api.common.state.ReducingStateDescriptor;
import org.apache.flink.api.common.typeutils.base.LongSerializer;
import org.apache.flink.api.java.tuple.Tuple2;
import org.apache.flink.api.java.tuple.Tuple3;
import org.apache.flink.streaming.api.TimeCharacteristic;
import org.apache.flink.streaming.api.datastream.DataStreamSource;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;
import org.apache.flink.streaming.api.functions.AssignerWithPeriodicWatermarks;
import org.apache.flink.streaming.api.functions.windowing.AllWindowFunction;
import org.apache.flink.streaming.api.watermark.Watermark;
import org.apache.flink.streaming.api.windowing.assigners.*;
import org.apache.flink.streaming.api.windowing.evictors.CountEvictor;
import org.apache.flink.streaming.api.windowing.evictors.Evictor;
import org.apache.flink.streaming.api.windowing.time.Time;
import org.apache.flink.streaming.api.windowing.triggers.CountTrigger;
import org.apache.flink.streaming.api.windowing.triggers.PurgingTrigger;
import org.apache.flink.streaming.api.windowing.triggers.Trigger;
import org.apache.flink.streaming.api.windowing.triggers.TriggerResult;
import org.apache.flink.streaming.api.windowing.windows.GlobalWindow;
import org.apache.flink.streaming.api.windowing.windows.TimeWindow;
import org.apache.flink.streaming.api.windowing.windows.Window;
import org.apache.flink.streaming.runtime.operators.windowing.TimestampedValue;
import org.apache.flink.util.Collector;

import javax.annotation.Nullable;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

public class WindowAllDemo {
    public static void main(String[] args) throws Exception {
        StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();

        env.setStreamTimeCharacteristic(TimeCharacteristic.EventTime);
        env.setParallelism(1);

        DataStreamSource<String> streamSource1 = env.socketTextStream("localhost", 8888);


        streamSource1
                .map(new MapFunction<String, Tuple3<String, Long, Integer>>() {
                    @Override
                    public Tuple3<String, Long, Integer> map(String value) throws Exception {
                        String[] split = value.split(",");
                        return new Tuple3<>(split[0], Long.valueOf(split[1]), Integer.valueOf(split[2]));
                    }
                })
                // 设置处理事件为事件时间必须指定时间与水位线
                .assignTimestampsAndWatermarks(new AssignerWithPeriodicWatermarks<Tuple3<String, Long, Integer>>() {
                    private long currentTimestamp = Long.MIN_VALUE;

                    private String sdf = "yyyy-MM-dd HH:mm:ss";

                    @Override
                    public long extractTimestamp(Tuple3<String, Long, Integer> word, long previousElementTimestamp) {

                        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(sdf);

                        long timestamp = word.f1;
                        currentTimestamp = currentTimestamp > timestamp ? currentTimestamp : timestamp;
                        System.out.println("event " +
                                "timestamp = {" + timestamp + "}, {" + simpleDateFormat.format(new Date(timestamp)) + "}, " +
                                "CurrentWatermark = {" + getCurrentWatermark().getTimestamp() + "}, {" + simpleDateFormat.format(new Date(currentTimestamp)) + "}");

                        // 这里特别注意下 timestamp 是
                        //当前对象的时间毫秒值
                        //当前对象的时间毫秒值
                        //当前对象的时间毫秒值
                        return timestamp;
                    }

                    @Nullable
                    @Override
                    public Watermark getCurrentWatermark() {
                        long maxTimeLag = 0;
                        long lastEmittedWatermark = currentTimestamp == Long.MIN_VALUE ? Long.MIN_VALUE : currentTimestamp - maxTimeLag;
                        return new Watermark(lastEmittedWatermark);
                    }
                })

                // ------------1  滚动窗口------------
                // 设置窗口为事件时间翻滚
                //.windowAll(TumblingEventTimeWindows.of(Time.seconds(5)))
                // 设置窗口为处理时间翻滚
                //.windowAll(TumblingProcessingTimeWindows.of(Time.seconds(5)))

                // ------------2  滑动窗口------------
                // 设置窗口为事件时间滚动 每三秒统计一次五分钟的数据
                //.windowAll(SlidingEventTimeWindows.of(Time.seconds(5), Time.seconds(3)))
                // 设置窗口为处理时间滚动
                //.windowAll(SlidingProcessingTimeWindows.of(Time.seconds(5), Time.seconds(3)))

                // ------------3  session 窗口------------

                // event-time session windows with static gap
                // 静态的session windows 只要时间间隔超过10秒 就触发一次聚合
                //.windowAll(EventTimeSessionWindows.withGap(Time.seconds(10)))

                // todo  不会整 event-time session windows with dynamic gap
                //.windowAll(EventTimeSessionWindows.withDynamicGap(
                //        (element) -> {
                // processing-time session windows with static gap
                //}).
                // 静态的session windows 只要时间间隔超过10秒 就触发一次聚合
                //.windowAll(ProcessingTimeSessionWindows.withGap(Time.minutes(10)))
                //  todo  不会整 processing-time session windows with dynamic gap
                //.windowAll(ProcessingTimeSessionWindows.withDynamicGap((element) -> {
                // determine and return session gap
                //}))

                // ------------4  全局 窗口------------
                .countWindowAll(5)
                //.windowAll(GlobalWindows.create())
                //.trigger(CountTrigger.of(5)) // 与 PurgingTrigger.of(CountTrigger.of(5)) 相比 自己不触发数据清理
                //.trigger(PurgingTrigger.of(CountTrigger.of(5))) // 与 CountTrigger.of(5) 相比 自己触发数据清理
//                .trigger(new Trigger<Tuple3<String, Long, Integer>, GlobalWindow>() {
//
//                    long maxCount = 5;
//
//                    private final ReducingStateDescriptor<Long> stateDesc =
//                            new ReducingStateDescriptor<>("count", new ReduceFunction<Long>() {
//                                @Override
//                                public Long reduce(Long value1, Long value2) throws Exception {
//                                    return value1 + value2;
//                                }
//                            }, LongSerializer.INSTANCE);
//
//
//                    @Override
//                    public TriggerResult onElement(Tuple3<String, Long, Integer> element, long timestamp, GlobalWindow window, TriggerContext ctx) throws Exception {
//                        ReducingState<Long> count = ctx.getPartitionedState(stateDesc);
//                        count.add(1L);
//                        Long aLong = count.get();
//                        System.out.println("onElement aLong = " + aLong);
//
//                        if (aLong >= maxCount) {
//                            count.clear();
//                            return TriggerResult.FIRE;
//                        }
//                        return TriggerResult.CONTINUE;
//                    }
//
//                    @Override
//                    public TriggerResult onEventTime(long time, GlobalWindow window, TriggerContext ctx) {
//                        return TriggerResult.CONTINUE;
//                    }
//
//                    @Override
//                    public TriggerResult onProcessingTime(long time, GlobalWindow window, TriggerContext ctx) throws Exception {
//                        return TriggerResult.CONTINUE;
//                    }
//
//                    @Override
//                    public void clear(GlobalWindow window, TriggerContext ctx) throws Exception {
//                        ctx.getPartitionedState(stateDesc).clear();
//                    }
//
//                    @Override
//                    public boolean canMerge() {
//                        return true;
//                    }
//
//                    @Override
//                    public void onMerge(GlobalWindow window, OnMergeContext ctx) throws Exception {
//                        ctx.mergePartitionedState(stateDesc);
//                    }
//                })
                //.evictor(CountEvictor.of(5))
//                .evictor(new Evictor<Tuple3<String, Long, Integer>, GlobalWindow>() {
//
//                    private final long maxCount = 5;
//                    private final boolean doEvictAfter = false;
//
//                    private void evict(Iterable<TimestampedValue<Tuple3<String, Long, Integer>>> elements, int size, EvictorContext ctx) {
//                        if (size <= maxCount) {
//                            return;
//                        } else {
//
//                            Iterator<TimestampedValue<Tuple3<String, Long, Integer>>> iterator = elements.iterator();
//                            int evictedCount = 0;
//
//                            while (iterator.hasNext()) {
//                                iterator.next();
//                                evictedCount++;
//                                if (evictedCount > size - maxCount) {
//                                    break;
//                                } else {
//                                    iterator.remove();
//                                }
//                            }
//                        }
//                    }
//
//
//                    @Override
//                    public void evictBefore(Iterable<TimestampedValue<Tuple3<String, Long, Integer>>> elements, int size, GlobalWindow window, EvictorContext ctx) {
//                        if (!doEvictAfter) {
//                            evict(elements, size, ctx);
//                        }
//                    }
//
//                    @Override
//                    public void evictAfter(Iterable<TimestampedValue<Tuple3<String, Long, Integer>>> elements, int size, GlobalWindow window, EvictorContext ctx) {
//                        if (doEvictAfter) {
//                            evict(elements, size, ctx);
//                        }
//                    }
//                })
                .apply(new AllWindowFunction<Tuple3<String, Long, Integer>, Tuple3<Long, Long, Integer>, GlobalWindow>() {
                    @Override
                    public void apply(GlobalWindow window, Iterable<Tuple3<String, Long, Integer>> values, Collector<Tuple3<Long, Long, Integer>> out) throws Exception {
                        int sum = StreamSupport.stream(values.spliterator(), false).mapToInt(o -> o.f2).sum();
                        long count = StreamSupport.stream(values.spliterator(), false).mapToInt(o -> o.f2).count();
                        System.out.println("apply count = " + count);
                        long start = 1;
                        long end = 1;
                        out.collect(new Tuple3<>(start, end, sum));
                    }
                })


//                .apply(new AllWindowFunction<Tuple3<String, Long, Integer>, Tuple3<Long, Long, Integer>, TimeWindow>() {
//                    @Override
//                    public void apply(TimeWindow
//                                              window, Iterable<Tuple3<String, Long, Integer>> values, Collector<Tuple3<Long, Long, Integer>> out) throws
//                            Exception {
//                        int sum = StreamSupport.stream(values.spliterator(), false).mapToInt(o -> o.f2).sum();
//                        long start = window.getStart();
//                        long end = window.getEnd();
//                        out.collect(new Tuple3<>(start, end, sum));
//                    }
//                })
                .print();

        env.execute("demo");

    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351