/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.flink.streaming.api.transformations; import com.google.common.collect.Lists; import java.util.Collection; import java.util.Collections; import java.util.List; import org.apache.flink.annotation.Internal; import org.apache.flink.api.common.typeinfo.TypeInformation; import org.apache.flink.streaming.api.operators.ChainingStrategy; /** * This represents a feedback point in a topology. The type of the feedback elements need not match * the type of the upstream {@code StreamTransformation} because the only allowed operations * after a {@code CoFeedbackTransformation} are * {@link org.apache.flink.streaming.api.transformations.TwoInputTransformation TwoInputTransformations}. * The upstream {@code StreamTransformation} will be connected to the first input of the Co-Transform * while the feedback edges will be connected to the second input. * * <p>Both the partitioning of the input and the feedback edges is preserved. They can also have * differing partitioning strategies. This requires, however, that the parallelism of the feedback * {@code StreamTransformations} must match the parallelism of the input * {@code StreamTransformation}. * * <p>The upstream {@code StreamTransformation} is not wired to this {@code CoFeedbackTransformation}. * It is instead directly wired to the {@code TwoInputTransformation} after this * {@code CoFeedbackTransformation}. * * <p>This is different from Iterations in batch processing. * @see org.apache.flink.streaming.api.transformations.FeedbackTransformation * * @param <F> The type of the feedback elements. * */ @Internal public class CoFeedbackTransformation<F> extends StreamTransformation<F> { private final List<StreamTransformation<F>> feedbackEdges; private final Long waitTime; /** * Creates a new {@code CoFeedbackTransformation} from the given input. * * @param parallelism The parallelism of the upstream {@code StreamTransformatino} and the * feedback edges. * @param feedbackType The type of the feedback edges * @param waitTime The wait time of the feedback operator. After the time expires * the operation will close and not receive any more feedback elements. */ public CoFeedbackTransformation(int parallelism, TypeInformation<F> feedbackType, Long waitTime) { super("CoFeedback", feedbackType, parallelism); this.waitTime = waitTime; this.feedbackEdges = Lists.newArrayList(); } /** * Adds a feedback edge. The parallelism of the {@code StreamTransformation} must match * the parallelism of the input {@code StreamTransformation} of the upstream * {@code StreamTransformation}. * * @param transform The new feedback {@code StreamTransformation}. */ public void addFeedbackEdge(StreamTransformation<F> transform) { if (transform.getParallelism() != this.getParallelism()) { throw new UnsupportedOperationException( "Parallelism of the feedback stream must match the parallelism of the original" + " stream. Parallelism of original stream: " + this.getParallelism() + "; parallelism of feedback stream: " + transform.getParallelism()); } feedbackEdges.add(transform); } /** * Returns the list of feedback {@code StreamTransformations}. */ public List<StreamTransformation<F>> getFeedbackEdges() { return feedbackEdges; } /** * Returns the wait time. This is the amount of time that the feedback operator keeps listening * for feedback elements. Once the time expires the operation will close and will not receive * further elements. */ public Long getWaitTime() { return waitTime; } @Override public final void setChainingStrategy(ChainingStrategy strategy) { throw new UnsupportedOperationException("Cannot set chaining strategy on Split Transformation."); } @Override public Collection<StreamTransformation<?>> getTransitivePredecessors() { return Collections.<StreamTransformation<?>>singleton(this); } }