Uploaded image for project: 'Flink'
  1. Flink
  2. FLINK-6935 Integration of SQL and CEP
  3. FLINK-7062

Support the basic functionality of MATCH_RECOGNIZE

    XMLWordPrintableJSON

Details

    Description

      In this JIRA, we will support the basic functionality of MATCH_RECOGNIZE in Flink SQL API which includes the support of syntax MEASURES, PATTERN and DEFINE. This would allow users write basic cep use cases with SQL like the following example:

      SELECT T.aid, T.bid, T.cid
      FROM MyTable
      MATCH_RECOGNIZE (
        MEASURES
          A.id AS aid,
          B.id AS bid,
          C.id AS cid
        PATTERN (A B C)
        DEFINE
          A AS A.name = 'a',
          B AS B.name = 'b',
          C AS C.name = 'c'
      ) AS T
      

      Attachments

        Issue Links

          Activity

            People

              dian.fu Dian Fu
              dian.fu Dian Fu
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: