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

org.apache.flink.runtime.state.context.ContextSubKeyedReducingState Maven / Gradle / Ivy

There is a newer version: 1.5.1
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.state.context;

import org.apache.flink.api.common.functions.ReduceFunction;
import org.apache.flink.api.common.typeutils.TypeSerializer;
import org.apache.flink.runtime.state.StateTransformationFunction;
import org.apache.flink.runtime.state.heap.KeyContextImpl;
import org.apache.flink.runtime.state.internal.InternalReducingState;
import org.apache.flink.runtime.state.subkeyed.SubKeyedState;
import org.apache.flink.runtime.state.subkeyed.SubKeyedValueState;
import org.apache.flink.util.Preconditions;

import java.util.Collection;

/**
 * used for reducing state.
 *
 * @param  The type of key the state is associated to
 * @param  The type of the namespace
 * @param  The type of elements in the aggregated by the ReduceFunction
 */
public class ContextSubKeyedReducingState
	implements ContextSubKeyedAppendingState, InternalReducingState {

	private N namespace;

	private final KeyContextImpl operator;

	private final SubKeyedValueState subKeyedValueState;

	private final ReduceTransformation transformation;

	public ContextSubKeyedReducingState(
		KeyContextImpl operator,
		SubKeyedValueState subKeyedValueState,
		ReduceFunction reduceFunction) {
		Preconditions.checkNotNull(operator);
		Preconditions.checkNotNull(subKeyedValueState);
		Preconditions.checkNotNull(reduceFunction);
		this.operator = operator;
		this.subKeyedValueState = subKeyedValueState;
		this.transformation = new ReduceTransformation(reduceFunction);
	}

	@Override
	public T get() {
		return subKeyedValueState.get(getCurrentKey(), namespace);
	}

	@Override
	public void add(T value) {
		subKeyedValueState.transform(operator.getCurrentKey(), namespace, value, transformation);
	}

	@Override
	public void clear() {
		subKeyedValueState.remove(getCurrentKey(), namespace);
	}

	private Object getCurrentKey() {
		return operator.getCurrentKey();
	}

	@Override
	public void mergeNamespaces(N target, Collection sources) throws Exception {
		if (sources == null || sources.isEmpty()) {
			return; // nothing to do
		}

		Object currentKey = getCurrentKey();
		T merged = null;

		// merge the sources
		for (N source : sources) {

			// get and remove the next source per namespace/key
			T sourceState = subKeyedValueState.getAndRemove(currentKey, source);

			if (merged != null && sourceState != null) {
				merged = transformation.reduceFunction.reduce(merged, sourceState);
			} else if (merged == null) {
				merged = sourceState;
			}
		}

		// merge into the target, if needed
		if (merged != null) {
			subKeyedValueState.transform(currentKey, target, merged, transformation);
		}
	}

	@Override
	public SubKeyedState getSubKeyedState() {
		return subKeyedValueState;
	}

	@Override
	public TypeSerializer getKeySerializer() {
		return operator.getKeySerializer();
	}

	@Override
	public TypeSerializer getNamespaceSerializer() {
		return subKeyedValueState.getDescriptor().getNamespaceSerializer();
	}

	@Override
	public TypeSerializer getValueSerializer() {
		return subKeyedValueState.getDescriptor().getValueSerializer();
	}

	@Override
	public void setCurrentNamespace(N namespace) {
		this.namespace = namespace;
	}

	@Override
	public byte[] getSerializedValue(byte[] serializedKeyAndNamespace, TypeSerializer safeKeySerializer, TypeSerializer safeNamespaceSerializer, TypeSerializer safeValueSerializer) throws Exception {
		return new byte[0];
	}

	private class ReduceTransformation implements StateTransformationFunction {

		private final ReduceFunction reduceFunction;

		public ReduceTransformation(ReduceFunction reduceFunction) {
			this.reduceFunction = Preconditions.checkNotNull(reduceFunction);
		}

		@Override
		public T apply(T previousState, T value) throws Exception {
			return previousState == null ? value : reduceFunction.reduce(previousState, value);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy