You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "boshu Zheng (JIRA)" <ji...@apache.org> on 2019/01/29 02:44:00 UTC

[jira] [Assigned] (FLINK-9959) Add JoinWindowFunction to allow access Window

     [ https://issues.apache.org/jira/browse/FLINK-9959?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

boshu Zheng reassigned FLINK-9959:
----------------------------------

    Assignee: boshu Zheng

> Add JoinWindowFunction to allow access Window
> ---------------------------------------------
>
>                 Key: FLINK-9959
>                 URL: https://issues.apache.org/jira/browse/FLINK-9959
>             Project: Flink
>          Issue Type: Improvement
>          Components: DataStream API
>    Affects Versions: 1.5.1, 1.6.0
>            Reporter: Bowen Li
>            Assignee: boshu Zheng
>            Priority: Major
>             Fix For: 1.8.0
>
>
> e.g. currently, a windowed join looks like this, and the JoinFunction doesn't have access to the Window it runs against.
> {code:java}
> A.join(B)
> 	.where(...)
> 	.equalTo(...)
> 	.window(...)
> 	.apply(new JoinFunction<IN1, IN2, OUT>() {});
> {code}
> We can allow users to query window information by having
> {code:java}
> A.join(B)
> 	.where(...)
> 	.equalTo(...)
> 	.window(...)
> 	.apply(new JoinWindowFunction<IN1, IN2, OUT, Window>() {});
> {code}



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