You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "sunjincheng (JIRA)" <ji...@apache.org> on 2018/12/03 09:00:11 UTC

[jira] [Created] (FLINK-11051) Add Bounded(Group Window) FlatAggregate operator to streaming Table API

sunjincheng created FLINK-11051:
-----------------------------------

             Summary: Add Bounded(Group Window) FlatAggregate operator to streaming Table API
                 Key: FLINK-11051
                 URL: https://issues.apache.org/jira/browse/FLINK-11051
             Project: Flink
          Issue Type: Sub-task
          Components: Table API &amp; SQL
            Reporter: sunjincheng
             Fix For: 1.8.0


Add FlatAggregate operator to streaming group window Table API as described in [FLIP-29|https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=97552739].

The usage:
{code:java}
tab.window(Tumble/Session/Slide... as 'w)
   .groupBy('w, 'k1, 'k2)
   .flatAggregate(tableAggregate('a))
   .select('w.rowtime, 'k1, 'k2, 'col1, 'col2)

{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)