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

org.apache.flink.runtime.state.KvStateSnapshot Maven / Gradle / Ivy

There is a newer version: 1.3.3
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;

import org.apache.flink.api.common.state.State;
import org.apache.flink.api.common.state.StateDescriptor;
import org.apache.flink.api.common.typeutils.TypeSerializer;

/**
 * This class represents a snapshot of the {@link KvState}, taken for a checkpoint. Where exactly
 * the snapshot stores the snapshot data (in this object, in an external data store, etc) depends
 * on the actual implementation. This snapshot defines merely how to restore the state and
 * how to discard the state.
 *
 * 

One possible implementation is that this snapshot simply contains a copy of the key/value map. * *

Another possible implementation for this snapshot is that the key/value map is serialized into * a file and this snapshot object contains a pointer to that file. * * @param The type of the key * @param The type of the namespace * @param The type of the {@link State} * @param The type of the {@link StateDescriptor} * @param The type of the backend that can restore the state from this snapshot. */ public interface KvStateSnapshot, Backend extends AbstractStateBackend> extends StateObject { /** * Loads the key/value state back from this snapshot. * * @param stateBackend The state backend that created this snapshot and can restore the key/value state * from this snapshot. * @param keySerializer The serializer for the keys. * @param classLoader The class loader for user-defined types. * * @return An instance of the key/value state loaded from this snapshot. * * @throws Exception Exceptions can occur during the state loading and are forwarded. */ KvState restoreState( Backend stateBackend, TypeSerializer keySerializer, ClassLoader classLoader) throws Exception; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy