You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Shannon Carey (JIRA)" <ji...@apache.org> on 2017/02/27 19:38:45 UTC

[jira] [Commented] (FLINK-5929) Allow Access to Per-Window State in ProcessWindowFunction

    [ https://issues.apache.org/jira/browse/FLINK-5929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15886378#comment-15886378 ] 

Shannon Carey commented on FLINK-5929:
--------------------------------------

Just to clarify, you're referring to the state from AbstractRichFunction#getRuntimeContext.getState(), right? That's the state keyed by the combination of event key and window operator. What you're suggesting is adding state for the individual panes within the window, right?

> Allow Access to Per-Window State in ProcessWindowFunction
> ---------------------------------------------------------
>
>                 Key: FLINK-5929
>                 URL: https://issues.apache.org/jira/browse/FLINK-5929
>             Project: Flink
>          Issue Type: Improvement
>          Components: DataStream API
>            Reporter: Aljoscha Krettek
>
> Right now, the state that a {{WindowFunction}} or {{ProcessWindowFunction}} can access is scoped to the key of the window but not the window itself. That is, state is global across all windows for a given key.
> For some use cases it is beneficial to keep state scoped to a window. For example, if you expect to have several {{Trigger}} firings (due to early and late firings) a user can keep state per window to keep some information between those firings.
> The per-window state has to be cleaned up in some way. For this I see two options:
>  - Keep track of all state that a user uses and clean up when we reach the window GC horizon.
>  - Add a method {{cleanup()}} to {{ProcessWindowFunction}} which is called when we reach the window GC horizon that users can/should use to clean up their state.
> On the API side, we can add a method {{windowState()}} on {{ProcessWindowFunction.Context}} that retrieves the per-window state and {{globalState()}} that would allow access to the (already available) global state. The {{Context}} would then look like this:
> {code}
> /**
>  * The context holding window metadata
>  */
> public abstract class Context {
>     /**
>      * @return The window that is being evaluated.
>      */
>     public abstract W window();
>     /**
>      * State accessor for per-key and per-window state.
>      */
>     KeyedStateStore windowState();
>     /**
>      * State accessor for per-key global state.
>      */
>     KeyedStateStore globalState();
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)