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

ASF GitHub Bot commented on FLINK-4174:
---------------------------------------

Github user aljoscha commented on a diff in the pull request:

    https://github.com/apache/flink/pull/2736#discussion_r86377225
  
    --- Diff: 
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/windowing/evictors/TimeEvictor.java
 ---
    @@ -65,11 +107,23 @@ public long getWindowSize() {
        }
     
        /**
    -    * Creates a {@code TimeEvictor} that keeps the given number of 
elements.
    -    *
    +    * Creates an {@code TimeEvictor} that keeps the given number of 
elements.
    +    * Eviction is done before the window function
         * @param windowSize The amount of time for which to keep elements.
         */
        public static <W extends Window> TimeEvictor<W> of(Time windowSize) {
                return new TimeEvictor<>(windowSize.toMilliseconds());
        }
    +
    +   /**
    +    * Creates an {@code TimeEvictor} that keeps the given number of 
elements.
    +    * Eviction is done before/after the window function
    +    * @param windowSize The amount of time for which to keep elements.
    +    * @param doEvictAfter Whether eviction is done after window function
    +    *
    +     * @return
    --- End diff --
    
    Empty `@return`, please either remove or write a description.


> Enhance Window Evictor
> ----------------------
>
>                 Key: FLINK-4174
>                 URL: https://issues.apache.org/jira/browse/FLINK-4174
>             Project: Flink
>          Issue Type: Sub-task
>          Components: Streaming
>            Reporter: vishnu viswanath
>            Assignee: vishnu viswanath
>
> Enhance the current functionality of Evictor as per this [design 
> document|https://docs.google.com/document/d/1Rr7xzlItYqvFXLyyy-Yv0vvw8f29QYAjm5i9E4A_JlU/edit].
> This includes:
> - Allow eviction of elements from the window in any order (not only from the 
> beginning). To do this Evictor must go through the list of elements and 
> remove the elements that have to be evicted instead of the current approach 
> of : returning the count of elements to be removed from beginning.
> - Allow eviction to be done before/after applying the window function.
> FLIP page for this enhancement : 
> [FLIP-4|https://cwiki.apache.org/confluence/display/FLINK/FLIP-4+%3A+Enhance+Window+Evictor]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to