Search in sources :

Example 6 with DynamicProcessingTimeSessionWindows

use of org.apache.flink.streaming.api.windowing.assigners.DynamicProcessingTimeSessionWindows in project flink by apache.

the class DynamicProcessingTimeSessionWindowsTest method testMergeConsecutiveWindows.

@Test
public void testMergeConsecutiveWindows() {
    MergingWindowAssigner.MergeCallback callback = mock(MergingWindowAssigner.MergeCallback.class);
    SessionWindowTimeGapExtractor extractor = mock(SessionWindowTimeGapExtractor.class);
    when(extractor.extract(any())).thenReturn(5000L);
    DynamicProcessingTimeSessionWindows assigner = DynamicProcessingTimeSessionWindows.withDynamicGap(extractor);
    assigner.mergeWindows(Lists.newArrayList(new TimeWindow(0, 1), new TimeWindow(1, 2), new TimeWindow(2, 3), new TimeWindow(4, 5), new TimeWindow(5, 6)), callback);
    verify(callback, times(1)).merge((Collection<TimeWindow>) argThat(containsInAnyOrder(new TimeWindow(0, 1), new TimeWindow(1, 2), new TimeWindow(2, 3))), eq(new TimeWindow(0, 3)));
    verify(callback, times(1)).merge((Collection<TimeWindow>) argThat(containsInAnyOrder(new TimeWindow(4, 5), new TimeWindow(5, 6))), eq(new TimeWindow(4, 6)));
    verify(callback, times(2)).merge(anyCollection(), Matchers.anyObject());
}
Also used : DynamicProcessingTimeSessionWindows(org.apache.flink.streaming.api.windowing.assigners.DynamicProcessingTimeSessionWindows) MergingWindowAssigner(org.apache.flink.streaming.api.windowing.assigners.MergingWindowAssigner) TimeWindow(org.apache.flink.streaming.api.windowing.windows.TimeWindow) SessionWindowTimeGapExtractor(org.apache.flink.streaming.api.windowing.assigners.SessionWindowTimeGapExtractor) Test(org.junit.Test)

Aggregations

DynamicProcessingTimeSessionWindows (org.apache.flink.streaming.api.windowing.assigners.DynamicProcessingTimeSessionWindows)6 SessionWindowTimeGapExtractor (org.apache.flink.streaming.api.windowing.assigners.SessionWindowTimeGapExtractor)6 Test (org.junit.Test)6 MergingWindowAssigner (org.apache.flink.streaming.api.windowing.assigners.MergingWindowAssigner)5 TimeWindow (org.apache.flink.streaming.api.windowing.windows.TimeWindow)5 ExecutionConfig (org.apache.flink.api.common.ExecutionConfig)1 WindowAssigner (org.apache.flink.streaming.api.windowing.assigners.WindowAssigner)1 ProcessingTimeTrigger (org.apache.flink.streaming.api.windowing.triggers.ProcessingTimeTrigger)1