Github user gyfora commented on a diff in the pull request:
https://github.com/apache/flink/pull/900#discussion_r34357746
--- Diff:
flink-staging/flink-streaming/flink-streaming-core/src/main/java/org/apache/flink/streaming/api/datastream/IterativeDataStream.java
---
@@ -201,14 +204,16 @@ public
ConnectedIterativeDataStream(IterativeDataStream<I> input, TypeInformatio
* @return The feedback stream.
*
*/
+ @SuppressWarnings({ "rawtypes", "unchecked" })
public DataStream<F> closeWith(DataStream<F> feedbackStream) {
- DataStream<F> iterationSink = new
DataStreamSink<F>(input.environment, "Iteration Sink",
- null, null);
+ if (input.closed) {
+ throw new IllegalStateException(
--- End diff --
I think this is a fair restriction, the user can always union.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---