[
https://issues.apache.org/jira/browse/BEAM-2930?focusedWorklogId=128945&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-128945
]
ASF GitHub Bot logged work on BEAM-2930:
----------------------------------------
Author: ASF GitHub Bot
Created on: 30/Jul/18 21:02
Start Date: 30/Jul/18 21:02
Worklog Time Spent: 10m
Work Description: tweise commented on a change in pull request #6082:
[BEAM-2930] Side inputs are not yet supported in streaming mode.
URL: https://github.com/apache/beam/pull/6082#discussion_r206320308
##########
File path:
runners/flink/src/main/java/org/apache/beam/runners/flink/FlinkStreamingPortablePipelineTranslator.java
##########
@@ -433,12 +433,17 @@ private void translateImpulse(
throw new RuntimeException(e);
}
- String inputPCollectionId =
Iterables.getOnlyElement(transform.getInputsMap().values());
+ String inputPCollectionId = stagePayload.getInput();
+ // TODO: BEAM-2930
+ if (stagePayload.getSideInputsCount() > 0) {
+ throw new UnsupportedOperationException(
+ "[BEAM-2930] streaming translator does not support side inputs: " +
transform);
+ }
Map<TupleTag<?>, OutputTag<WindowedValue<?>>> tagsToOutputTags =
Maps.newLinkedHashMap();
Map<TupleTag<?>, Coder<WindowedValue<?>>> tagsToCoders =
Maps.newLinkedHashMap();
// TODO: does it matter which output we designate as "main"
- TupleTag<OutputT> mainOutputTag;
+ final TupleTag<OutputT> mainOutputTag;
Review comment:
fixed
----------------------------------------------------------------
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: 128945)
Time Spent: 50m (was: 40m)
> Flink support for portable side input
> -------------------------------------
>
> Key: BEAM-2930
> URL: https://issues.apache.org/jira/browse/BEAM-2930
> Project: Beam
> Issue Type: Sub-task
> Components: runner-flink
> Reporter: Henning Rohde
> Priority: Major
> Labels: portability
> Time Spent: 50m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)