flink-cep实践

java 复制代码
package com.techwolf.hubble;

import com.alibaba.fastjson.JSONObject;
import com.techwolf.hubble.constant.Config;
import com.techwolf.hubble.model.TestEvent;
import org.apache.flink.api.common.eventtime.TimestampAssigner;
import org.apache.flink.api.common.eventtime.TimestampAssignerSupplier;
import org.apache.flink.api.common.eventtime.WatermarkStrategy;
import org.apache.flink.api.common.functions.MapFunction;
import org.apache.flink.cep.CEP;
import org.apache.flink.cep.PatternFlatSelectFunction;
import org.apache.flink.cep.PatternFlatTimeoutFunction;
import org.apache.flink.cep.PatternStream;
import org.apache.flink.cep.pattern.Pattern;
import org.apache.flink.cep.pattern.conditions.SimpleCondition;
import org.apache.flink.streaming.api.TimeCharacteristic;
import org.apache.flink.streaming.api.datastream.DataStream;
import org.apache.flink.streaming.api.datastream.SingleOutputStreamOperator;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;
import org.apache.flink.streaming.api.functions.sink.PrintSinkFunction;
import org.apache.flink.streaming.api.windowing.time.Time;
import org.apache.flink.util.Collector;
import org.apache.flink.util.OutputTag;

import java.util.List;
import java.util.Map;


/**
 * Hello world!
 *
 */
public class App {

    public static void main(String[] args) throws Exception{
        //初始化环境
        StreamExecutionEnvironment env=StreamExecutionEnvironment.getExecutionEnvironment();

        env.setStreamTimeCharacteristic(TimeCharacteristic.EventTime);
        //定义时间戳提取器作为输入流分配时间戳和水位线
        WatermarkStrategy<TestEvent> watermarkStrategy=WatermarkStrategy.<TestEvent>
                forMonotonousTimestamps().withTimestampAssigner(new EventTimeAssignerSupplier());

        DataStream<TestEvent> inputDataSteam=env.fromElements(
                new TestEvent("1","A",System.currentTimeMillis()-100*1000,"1"),
                new TestEvent("1","A",System.currentTimeMillis()-85*1000,"2"),
                new TestEvent("1","A",System.currentTimeMillis()-80*1000,"3"),
                new TestEvent("1","A",System.currentTimeMillis()-75*1000,"4"),
                new TestEvent("1","A",System.currentTimeMillis()-60*1000,"5"),
                new TestEvent("1","A",System.currentTimeMillis()-55*1000,"6"),
                new TestEvent("1","A",System.currentTimeMillis()-40*1000,"7"),
                new TestEvent("1","A",System.currentTimeMillis()-35*1000,"8"),
                new TestEvent("1","A",System.currentTimeMillis()-20*1000,"9"),
                new TestEvent("1","A",System.currentTimeMillis()-10*1000,"10"),
                new TestEvent("1","B",System.currentTimeMillis()-5*1000,"11")
        ).assignTimestampsAndWatermarks(watermarkStrategy);

        Pattern<TestEvent,TestEvent> pattern=Pattern.<TestEvent>begin("begin")
                .where(new SimpleCondition<TestEvent>() {
                    @Override
                    public boolean filter(TestEvent testEvent) throws Exception {
                        return testEvent.getAction().equals("A");
                    }
                }).
                followedBy("end")
                .where(new SimpleCondition<TestEvent>() {
                    @Override
                    public boolean filter(TestEvent testEvent) throws Exception {
                        return testEvent.getAction().equals("B");
                    }
                }).within(Time.seconds(10));


        PatternStream<TestEvent> patternStream=CEP.pattern(inputDataSteam.keyBy(TestEvent::getId),pattern);
        OutputTag<TestEvent> timeOutTag=new OutputTag<TestEvent>("timeOutTag"){};

        //处理匹配结果
        SingleOutputStreamOperator<TestEvent> twentySingleOutputStream=patternStream
                .flatSelect(timeOutTag,new EventTimeOut(),new FlatSelect())
                .uid("match_twenty_minutes_pattern");
        DataStream<String> result=twentySingleOutputStream.getSideOutput(timeOutTag).map(new MapFunction<TestEvent, String>() {
            @Override
            public String map(TestEvent testEvent) throws Exception {
                return JSONObject.toJSONString(testEvent);
            }
        });
        result.print();
        env.execute(Config.JOB_NAME);
    }

    public static class EventTimeOut implements PatternFlatTimeoutFunction<TestEvent,TestEvent> {
        private static final long serialVersionUID = -2471077777598713906L;
        @Override
        public void timeout(Map<String, List<TestEvent>> map, long l, Collector<TestEvent> collector) throws Exception {
            if (null != map.get("begin")) {
                for (TestEvent event : map.get("begin")) {
                    collector.collect(event);
                }
            }
        }
    }

    public static class FlatSelect implements PatternFlatSelectFunction<TestEvent,TestEvent> {
        private static final long serialVersionUID = 1753544074226581611L;
        @Override
        public void flatSelect(Map<String, List<TestEvent>> map, Collector<TestEvent> collector) throws Exception {
            if (null != map.get("begin")) {
                for (TestEvent event : map.get("begin")) {
                    collector.collect(event);
                }
            }
        }
    }

    public static class EventTimeAssignerSupplier implements TimestampAssignerSupplier<TestEvent> {
        private static final long serialVersionUID = -9040340771307752904L;

        @Override
        public TimestampAssigner<TestEvent> createTimestampAssigner(Context context) {
            return new EventTimeAssigner();
        }
    }

    public static class EventTimeAssigner implements TimestampAssigner<TestEvent> {
        @Override
        public long extractTimestamp(TestEvent event, long l) {
            return event.getEventTime();
        }
    }
}
相关推荐
Cachel wood9 天前
Spark教程6:Spark 底层执行原理详解
大数据·数据库·分布式·计算机网络·spark
Sally璐璐9 天前
数据标注工具详解
大数据·ai
expect7g9 天前
新时代多流Join的一个思路----Partial Update
后端·flink
云宏信息9 天前
金融vmware替换过程中关于利旧纳管、迁移、数据安全容灾备份、成本及案例|金融行业数字化QA合集④
大数据·运维·服务器·科技·金融·云计算
expect7g9 天前
Paimon也有聚合表了?
后端·flink
时序数据说9 天前
时序数据库IoTDB数据导入与查询功能详解
大数据·数据库·开源·时序数据库·iotdb
引量AI9 天前
TikTok 矩阵如何快速涨粉
大数据·人工智能·矩阵·tiktok矩阵·海外社媒
waterHBO9 天前
啥是 SaaS
大数据·微服务
RacheV+TNY2642789 天前
拼多多API限流机制破解:分布式IP池搭建与流量伪装方案
大数据·网络·人工智能·爬虫·python
189228048619 天前
NW896NX769美光固态芯片NX790NX793
大数据·服务器·科技