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

org.apache.flink.runtime.state.context.ContextSubKeyedAggregatingState 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.AggregateFunction;
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.InternalAggregatingState;
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 aggregating state.
 *
 * @param  The type of key the state is associated to
 * @param  The type of the namespace
 * @param  Type of the value added to the state
 * @param  The type of elements in the state
 * @param  Type of the value extracted from the state
 */
public class ContextSubKeyedAggregatingState
	implements ContextSubKeyedAppendingState, InternalAggregatingState {

	private N namespace;

	private final KeyContextImpl operator;

	private final SubKeyedValueState subKeyedValueState;

	private final AggregateTransformation aggregateTransformation;

	private final MergeTransformation mergeTransformation;

	public ContextSubKeyedAggregatingState(
		KeyContextImpl operator,
		SubKeyedValueState subKeyedValueState,
		AggregateFunction aggregateFunction) {
		Preconditions.checkNotNull(operator);
		Preconditions.checkNotNull(subKeyedValueState);
		Preconditions.checkNotNull(aggregateFunction);
		this.operator = operator;
		this.subKeyedValueState = subKeyedValueState;
		this.aggregateTransformation = new AggregateTransformation(aggregateFunction);
		this.mergeTransformation = new MergeTransformation(aggregateFunction);
	}

	@Override
	public OUT get() {
		ACC accumulator = subKeyedValueState.get(operator.getCurrentKey(), namespace);
		return accumulator == null ? null : aggregateTransformation.aggregateFunction.getResult(accumulator);
	}

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

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

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

		Object currentKey = operator.getCurrentKey();
		ACC merged = null;

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

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

			if (merged != null && sourceState != null) {
				merged = mergeTransformation.aggregateFunction.merge(merged, sourceState);
			} else if (merged == null) {
				merged = sourceState;
			}
		}

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

	@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 subKeyedValueState.getSerializedValue(serializedKeyAndNamespace, safeKeySerializer, safeNamespaceSerializer, safeValueSerializer);
	}

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

	private class AggregateTransformation implements StateTransformationFunction {

		private final AggregateFunction aggregateFunction;

		public AggregateTransformation(AggregateFunction aggregateFunction) {
			this.aggregateFunction = Preconditions.checkNotNull(aggregateFunction);
		}

		@Override
		public ACC apply(ACC accumulator, IN value) {
			if (accumulator == null) {
				accumulator = aggregateFunction.createAccumulator();
			}
			return aggregateFunction.add(value, accumulator);
		}
	}

	private class MergeTransformation implements StateTransformationFunction {

		private final AggregateFunction aggregateFunction;

		public MergeTransformation(AggregateFunction aggregateFunction) {
			this.aggregateFunction = Preconditions.checkNotNull(aggregateFunction);
		}

		@Override
		public ACC apply(ACC v1, ACC v2) {
			return v1 == null ? v2 : aggregateFunction.merge(v1, v2);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy