All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.streaming.api.graph.StreamNode Maven / Gradle / Ivy

There is a newer version: 1.14.6
Show newest version
/*
 * 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.graph;

import org.apache.flink.annotation.Internal;
import org.apache.flink.api.common.ExecutionConfig;
import org.apache.flink.api.common.io.InputFormat;
import org.apache.flink.api.common.operators.ResourceSpec;
import org.apache.flink.api.common.typeutils.TypeSerializer;
import org.apache.flink.api.java.functions.KeySelector;
import org.apache.flink.runtime.jobgraph.tasks.AbstractInvokable;
import org.apache.flink.streaming.api.collector.selector.OutputSelector;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;
import org.apache.flink.streaming.api.operators.StreamOperator;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * Class representing the operators in the streaming programs, with all their properties.
 */
@Internal
public class StreamNode implements Serializable {

	private static final long serialVersionUID = 1L;

	private transient StreamExecutionEnvironment env;

	private final int id;
	private Integer parallelism = null;
	/**
	 * Maximum parallelism for this stream node. The maximum parallelism is the upper limit for
	 * dynamic scaling and the number of key groups used for partitioned state.
	 */
	private int maxParallelism;
	private ResourceSpec minResources = ResourceSpec.DEFAULT;
	private ResourceSpec preferredResources = ResourceSpec.DEFAULT;
	private Long bufferTimeout = null;
	private final String operatorName;
	private String slotSharingGroup;
	private KeySelector statePartitioner1;
	private KeySelector statePartitioner2;
	private TypeSerializer stateKeySerializer;

	private transient StreamOperator operator;
	private List> outputSelectors;
	private TypeSerializer typeSerializerIn1;
	private TypeSerializer typeSerializerIn2;
	private TypeSerializer typeSerializerOut;

	private List inEdges = new ArrayList();
	private List outEdges = new ArrayList();

	private final Class jobVertexClass;

	private InputFormat inputFormat;

	private String transformationUID;
	private String userHash;

	public StreamNode(StreamExecutionEnvironment env,
		Integer id,
		String slotSharingGroup,
		StreamOperator operator,
		String operatorName,
		List> outputSelector,
		Class jobVertexClass) {
		this.env = env;
		this.id = id;
		this.operatorName = operatorName;
		this.operator = operator;
		this.outputSelectors = outputSelector;
		this.jobVertexClass = jobVertexClass;
		this.slotSharingGroup = slotSharingGroup;
	}

	public void addInEdge(StreamEdge inEdge) {
		if (inEdge.getTargetId() != getId()) {
			throw new IllegalArgumentException("Destination id doesn't match the StreamNode id");
		} else {
			inEdges.add(inEdge);
		}
	}

	public void addOutEdge(StreamEdge outEdge) {
		if (outEdge.getSourceId() != getId()) {
			throw new IllegalArgumentException("Source id doesn't match the StreamNode id");
		} else {
			outEdges.add(outEdge);
		}
	}

	public List getOutEdges() {
		return outEdges;
	}

	public List getInEdges() {
		return inEdges;
	}

	public List getOutEdgeIndices() {
		List outEdgeIndices = new ArrayList();

		for (StreamEdge edge : outEdges) {
			outEdgeIndices.add(edge.getTargetId());
		}

		return outEdgeIndices;
	}

	public List getInEdgeIndices() {
		List inEdgeIndices = new ArrayList();

		for (StreamEdge edge : inEdges) {
			inEdgeIndices.add(edge.getSourceId());
		}

		return inEdgeIndices;
	}

	public int getId() {
		return id;
	}

	public int getParallelism() {
		if (parallelism == ExecutionConfig.PARALLELISM_DEFAULT) {
			return env.getParallelism();
		} else {
			return parallelism;
		}
	}

	public void setParallelism(Integer parallelism) {
		this.parallelism = parallelism;
	}

	/**
	 * Get the maximum parallelism for this stream node.
	 *
	 * @return Maximum parallelism
	 */
	int getMaxParallelism() {
		return maxParallelism;
	}

	/**
	 * Set the maximum parallelism for this stream node.
	 *
	 * @param maxParallelism Maximum parallelism to be set
	 */
	void setMaxParallelism(int maxParallelism) {
		this.maxParallelism = maxParallelism;
	}

	public ResourceSpec getMinResources() {
		return minResources;
	}

	public ResourceSpec getPreferredResources() {
		return preferredResources;
	}

	public void setResources(ResourceSpec minResources, ResourceSpec preferredResources) {
		this.minResources = minResources;
		this.preferredResources = preferredResources;
	}

	public Long getBufferTimeout() {
		return bufferTimeout != null ? bufferTimeout : env.getBufferTimeout();
	}

	public void setBufferTimeout(Long bufferTimeout) {
		this.bufferTimeout = bufferTimeout;
	}

	public StreamOperator getOperator() {
		return operator;
	}

	public void setOperator(StreamOperator operator) {
		this.operator = operator;
	}

	public String getOperatorName() {
		return operatorName;
	}

	public List> getOutputSelectors() {
		return outputSelectors;
	}

	public void addOutputSelector(OutputSelector outputSelector) {
		this.outputSelectors.add(outputSelector);
	}

	public TypeSerializer getTypeSerializerIn1() {
		return typeSerializerIn1;
	}

	public void setSerializerIn1(TypeSerializer typeSerializerIn1) {
		this.typeSerializerIn1 = typeSerializerIn1;
	}

	public TypeSerializer getTypeSerializerIn2() {
		return typeSerializerIn2;
	}

	public void setSerializerIn2(TypeSerializer typeSerializerIn2) {
		this.typeSerializerIn2 = typeSerializerIn2;
	}

	public TypeSerializer getTypeSerializerOut() {
		return typeSerializerOut;
	}

	public void setSerializerOut(TypeSerializer typeSerializerOut) {
		this.typeSerializerOut = typeSerializerOut;
	}

	public Class getJobVertexClass() {
		return jobVertexClass;
	}

	public InputFormat getInputFormat() {
		return inputFormat;
	}

	public void setInputFormat(InputFormat inputFormat) {
		this.inputFormat = inputFormat;
	}

	public void setSlotSharingGroup(String slotSharingGroup) {
		this.slotSharingGroup = slotSharingGroup;
	}

	public String getSlotSharingGroup() {
		return slotSharingGroup;
	}

	public boolean isSameSlotSharingGroup(StreamNode downstreamVertex) {
		return (slotSharingGroup == null && downstreamVertex.slotSharingGroup == null) ||
				(slotSharingGroup != null && slotSharingGroup.equals(downstreamVertex.slotSharingGroup));
	}

	@Override
	public String toString() {
		return operatorName + "-" + id;
	}

	public KeySelector getStatePartitioner1() {
		return statePartitioner1;
	}

	public KeySelector getStatePartitioner2() {
		return statePartitioner2;
	}

	public void setStatePartitioner1(KeySelector statePartitioner) {
		this.statePartitioner1 = statePartitioner;
	}

	public void setStatePartitioner2(KeySelector statePartitioner) {
		this.statePartitioner2 = statePartitioner;
	}

	public TypeSerializer getStateKeySerializer() {
		return stateKeySerializer;
	}

	public void setStateKeySerializer(TypeSerializer stateKeySerializer) {
		this.stateKeySerializer = stateKeySerializer;
	}

	public String getTransformationUID() {
		return transformationUID;
	}

	void setTransformationUID(String transformationId) {
		this.transformationUID = transformationId;
	}

	public String getUserHash() {
		return userHash;
	}

	public void setUserHash(String userHash) {
		this.userHash = userHash;
	}

	@Override
	public boolean equals(Object o) {
		if (this == o) {
			return true;
		}
		if (o == null || getClass() != o.getClass()) {
			return false;
		}

		StreamNode that = (StreamNode) o;
		return id == that.id;
	}

	@Override
	public int hashCode() {
		return id;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy