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

org.apache.flink.runtime.operators.chaining.ChainedDriver Maven / Gradle / Ivy

There is a newer version: 1.13.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.runtime.operators.chaining;

import org.apache.flink.api.common.ExecutionConfig;
import org.apache.flink.api.common.accumulators.Accumulator;
import org.apache.flink.api.common.functions.Function;
import org.apache.flink.api.common.functions.RuntimeContext;
import org.apache.flink.metrics.Counter;
import org.apache.flink.runtime.execution.Environment;
import org.apache.flink.runtime.jobgraph.tasks.AbstractInvokable;
import org.apache.flink.runtime.metrics.groups.OperatorIOMetricGroup;
import org.apache.flink.runtime.metrics.groups.OperatorMetricGroup;
import org.apache.flink.runtime.operators.BatchTask;
import org.apache.flink.runtime.operators.util.DistributedRuntimeUDFContext;
import org.apache.flink.runtime.operators.util.TaskConfig;
import org.apache.flink.runtime.operators.util.metrics.CountingCollector;
import org.apache.flink.util.Collector;

import java.util.Map;

/**
 * The interface to be implemented by drivers that do not run in an own task context, but are chained to other
 * tasks.
 */
public abstract class ChainedDriver implements Collector {

	protected TaskConfig config;

	protected String taskName;

	protected Collector outputCollector;
	
	protected ClassLoader userCodeClassLoader;
	
	private DistributedRuntimeUDFContext udfContext;

	protected ExecutionConfig executionConfig;

	protected boolean objectReuseEnabled = false;
	
	protected OperatorMetricGroup metrics;
	
	protected Counter numRecordsIn;
	
	protected Counter numRecordsOut;

	
	public void setup(TaskConfig config, String taskName, Collector outputCollector,
			AbstractInvokable parent, ClassLoader userCodeClassLoader, ExecutionConfig executionConfig,
			Map> accumulatorMap)
	{
		this.config = config;
		this.taskName = taskName;
		this.userCodeClassLoader = userCodeClassLoader;
		this.metrics = parent.getEnvironment().getMetricGroup().getOrAddOperator(taskName);
		this.numRecordsIn = this.metrics.getIOMetricGroup().getNumRecordsInCounter();
		this.numRecordsOut = this.metrics.getIOMetricGroup().getNumRecordsOutCounter();
		this.outputCollector = new CountingCollector<>(outputCollector, numRecordsOut);

		Environment env = parent.getEnvironment();

		if (parent instanceof BatchTask) {
			this.udfContext = ((BatchTask) parent).createRuntimeContext(metrics);
		} else {
			this.udfContext = new DistributedRuntimeUDFContext(env.getTaskInfo(), userCodeClassLoader,
					parent.getExecutionConfig(), env.getDistributedCacheEntries(), accumulatorMap, metrics
			);
		}

		this.executionConfig = executionConfig;
		this.objectReuseEnabled = executionConfig.isObjectReuseEnabled();

		setup(parent);
	}

	public abstract void setup(AbstractInvokable parent);

	public abstract void openTask() throws Exception;

	public abstract void closeTask() throws Exception;

	public abstract void cancelTask();

	public abstract Function getStub();

	public abstract String getTaskName();

	@Override
	public abstract void collect(IT record);

	public OperatorIOMetricGroup getIOMetrics() {
		return this.metrics.getIOMetricGroup();
	}
	
	protected RuntimeContext getUdfRuntimeContext() {
		return this.udfContext;
	}

	@SuppressWarnings("unchecked")
	public void setOutputCollector(Collector outputCollector) {
		this.outputCollector = new CountingCollector<>((Collector) outputCollector, numRecordsOut);
	}

	public Collector getOutputCollector() {
		return outputCollector;
	}
	
	public TaskConfig getTaskConfig() {
		return this.config;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy