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

org.apache.flink.table.runtime.functions.KeyedProcessFunctionWithCleanupState Maven / Gradle / Ivy

/*
 * 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.table.runtime.functions;

import org.apache.flink.api.common.state.State;
import org.apache.flink.api.common.state.ValueState;
import org.apache.flink.api.common.state.ValueStateDescriptor;
import org.apache.flink.api.common.typeinfo.Types;
import org.apache.flink.streaming.api.TimeDomain;
import org.apache.flink.streaming.api.functions.KeyedProcessFunction;

import java.io.IOException;

/**
 * A function that processes elements of a stream, and could cleanup state.
 * @param  Type of the key.
 * @param   Type of the input elements.
 * @param  Type of the output elements.
 */
public abstract class KeyedProcessFunctionWithCleanupState
	extends KeyedProcessFunction implements CleanupState {

	private static final long serialVersionUID = 2084560869233898457L;

	private final long minRetentionTime;
	private final long maxRetentionTime;
	protected final boolean stateCleaningEnabled;

	// holds the latest registered cleanup timer
	private ValueState cleanupTimeState;

	public KeyedProcessFunctionWithCleanupState(long minRetentionTime, long maxRetentionTime) {
		this.minRetentionTime = minRetentionTime;
		this.maxRetentionTime = maxRetentionTime;
		this.stateCleaningEnabled = minRetentionTime > 1;
	}

	protected void initCleanupTimeState(String stateName) {
		if (stateCleaningEnabled) {
			ValueStateDescriptor inputCntDescriptor = new ValueStateDescriptor<>(stateName, Types.LONG);
			cleanupTimeState = getRuntimeContext().getState(inputCntDescriptor);
		}
	}

	protected void registerProcessingCleanupTimer(Context ctx, long currentTime) throws Exception {
		if (stateCleaningEnabled) {
			registerProcessingCleanupTimer(
				cleanupTimeState,
				currentTime,
				minRetentionTime,
				maxRetentionTime,
				ctx.timerService()
			);
		}
	}

	protected boolean isProcessingTimeTimer(OnTimerContext ctx) {
		return ctx.timeDomain() == TimeDomain.PROCESSING_TIME;
	}

	protected void cleanupState(State... states) {
		for (State state : states) {
			state.clear();
		}
		this.cleanupTimeState.clear();
	}

	protected Boolean needToCleanupState(Long timestamp) throws IOException {
		if (stateCleaningEnabled) {
			Long cleanupTime = cleanupTimeState.value();
			// check that the triggered timer is the last registered processing time timer.
			return timestamp.equals(cleanupTime);
		} else {
			return false;
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy