[
https://issues.apache.org/jira/browse/BEAM-3905?focusedWorklogId=110093&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-110093
]
ASF GitHub Bot logged work on BEAM-3905:
----------------------------------------
Author: ASF GitHub Bot
Created on: 08/Jun/18 12:32
Start Date: 08/Jun/18 12:32
Worklog Time Spent: 10m
Work Description: aljoscha commented on a change in pull request #5578:
[BEAM-3905] Update Flink Runner to Flink 1.5.0
URL: https://github.com/apache/beam/pull/5578#discussion_r194042312
##########
File path:
runners/flink/src/main/java/org/apache/beam/runners/flink/translation/wrappers/streaming/DoFnOperator.java
##########
@@ -291,16 +310,24 @@ public void open() throws Exception {
if (!sideInputs.isEmpty()) {
- pushedBackTag = StateTags.bag("pushed-back-values", inputCoder);
-
FlinkBroadcastStateInternals sideInputStateInternals =
new FlinkBroadcastStateInternals<>(
getContainingTask().getIndexInSubtaskGroup(),
getOperatorStateBackend());
sideInputHandler = new SideInputHandler(sideInputs,
sideInputStateInternals);
sideInputReader = sideInputHandler;
- pushedBackWatermark = Optional.absent();
+ Stream<WindowedValue<InputT>> pushedBack =
pushedBackElementsHandler.getElements();
+ Iterator<WindowedValue<InputT>> it = pushedBack.iterator();
+
+ long min = Long.MAX_VALUE;
Review comment:
I'm not sure I can because I'm iterating over the pushed back elements,
which I only have in the case where I have side inputs.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 110093)
Time Spent: 2.5h (was: 2h 20m)
> Update Flink Runner to Flink 1.5.0
> ----------------------------------
>
> Key: BEAM-3905
> URL: https://issues.apache.org/jira/browse/BEAM-3905
> Project: Beam
> Issue Type: Improvement
> Components: runner-flink
> Reporter: Aljoscha Krettek
> Assignee: Aljoscha Krettek
> Priority: Major
> Time Spent: 2.5h
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)