You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2022/06/03 17:29:40 UTC

[GitHub] [beam] kennknowles opened a new issue, #18366: SDF should properly support windowed side inputs

kennknowles opened a new issue, #18366:
URL: https://github.com/apache/beam/issues/18366

   Currently there is no test coverage for Splittable DoFn **** windowed side inputs, especially when not all of the side input windows are ready.
   
   Moreover, current implementation of SDF in the direct runner is definitely wrong: it uses a ParDoEvaluator to run the ProcessFn, and this ParDoEvaluator looks at the wrong windows to decide which windows are ready and which are not: https://github.com/apache/beam/blob/master/runners/direct-java/src/main/java/org/apache/beam/runners/direct/ParDoEvaluator.java#L134 - the WindowedValue in question is a KeyedWorkItem, and they are always in the global window, but the important windows are windows of elements inside this KWI's elementsIterable().
   
   The Flink implementation is also wrong in the same way.
   
   This JIRA is to:
   1) add test coverage for this case
   2) implement proper support in all runners
   
   I believe the easiest way to do 2) is to:
   - make SplittableParDo, in case the DoFn has side inputs, pre-explode windows before feeding them into GroupByKeyIntoKeyedWorkItems , so that the resulting KWI's have elements only in a single window
   - tweak runners to look at the proper window, and assert that there's only one window, while evaluating ProcessFn, in case the DoFn uses side inputs
   
   
   Imported from Jira [BEAM-1983](https://issues.apache.org/jira/browse/BEAM-1983). Original Jira may contain additional context.
   Reported by: jkff.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org