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

org.apache.flink.runtime.checkpoint.OperatorSubtaskState 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.runtime.checkpoint;

import org.apache.flink.runtime.state.CompositeStateHandle;
import org.apache.flink.runtime.state.OperatorStateHandle;
import org.apache.flink.runtime.state.KeyedStateHandle;
import org.apache.flink.runtime.state.SharedStateRegistry;
import org.apache.flink.runtime.state.StateObject;
import org.apache.flink.runtime.state.StateUtil;
import org.apache.flink.util.Preconditions;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import java.util.ArrayList;
import java.util.List;

/**
 * This class encapsulates the state for one parallel instance of an operator. The complete state of a (logical)
 * operator (e.g. a flatmap operator) consists of the union of all {@link OperatorSubtaskState}s from all
 * parallel tasks that physically execute parallelized, physical instances of the operator.
 *
 * 

The full state of the logical operator is represented by {@link OperatorState} which consists of * {@link OperatorSubtaskState}s. * *

Typically, we expect all collections in this class to be of size 0 or 1, because there is up to one state handle * produced per state type (e.g. managed-keyed, raw-operator, ...). In particular, this holds when taking a snapshot. * The purpose of having the state handles in collections is that this class is also reused in restoring state. * Under normal circumstances, the expected size of each collection is still 0 or 1, except for scale-down. In * scale-down, one operator subtask can become responsible for the state of multiple previous subtasks. The collections * can then store all the state handles that are relevant to build up the new subtask state. */ public class OperatorSubtaskState implements CompositeStateHandle { private static final Logger LOG = LoggerFactory.getLogger(OperatorSubtaskState.class); private static final long serialVersionUID = -2394696997971923995L; /** * Snapshot from the {@link org.apache.flink.runtime.state.OperatorStateBackend}. */ @Nonnull private final StateObjectCollection managedOperatorState; /** * Snapshot written using {@link org.apache.flink.runtime.state.OperatorStateCheckpointOutputStream}. */ @Nonnull private final StateObjectCollection rawOperatorState; /** * Snapshot from {@link org.apache.flink.runtime.state.KeyedStateBackend}. */ @Nonnull private final StateObjectCollection managedKeyedState; /** * Snapshot written using {@link org.apache.flink.runtime.state.KeyedStateCheckpointOutputStream}. */ @Nonnull private final StateObjectCollection rawKeyedState; /** * The state size. This is also part of the deserialized state handle. * We store it here in order to not deserialize the state handle when * gathering stats. */ private final long stateSize; /** * The full state size for incremental checkpoints. This is also part of the deserialized state handle. */ private final long fullStateSize; /** * Empty state. */ public OperatorSubtaskState() { this( StateObjectCollection.empty(), StateObjectCollection.empty(), StateObjectCollection.empty(), StateObjectCollection.empty()); } public OperatorSubtaskState( @Nonnull StateObjectCollection managedOperatorState, @Nonnull StateObjectCollection rawOperatorState, @Nonnull StateObjectCollection managedKeyedState, @Nonnull StateObjectCollection rawKeyedState) { this.managedOperatorState = Preconditions.checkNotNull(managedOperatorState); this.rawOperatorState = Preconditions.checkNotNull(rawOperatorState); this.managedKeyedState = Preconditions.checkNotNull(managedKeyedState); this.rawKeyedState = Preconditions.checkNotNull(rawKeyedState); long calculateStateSize = managedOperatorState.getStateSize(); calculateStateSize += rawOperatorState.getStateSize(); calculateStateSize += rawKeyedState.getStateSize(); long calculateFullStateSize = calculateStateSize; calculateStateSize += managedKeyedState.getStateSize(); calculateFullStateSize += managedKeyedState.getFullStateSize(); stateSize = calculateStateSize; fullStateSize = calculateFullStateSize; } /** * For convenience because the size of the collections is typically 0 or 1. Null values are translated into empty * Collections. */ public OperatorSubtaskState( @Nullable OperatorStateHandle managedOperatorState, @Nullable OperatorStateHandle rawOperatorState, @Nullable KeyedStateHandle managedKeyedState, @Nullable KeyedStateHandle rawKeyedState) { this( singletonOrEmptyOnNull(managedOperatorState), singletonOrEmptyOnNull(rawOperatorState), singletonOrEmptyOnNull(managedKeyedState), singletonOrEmptyOnNull(rawKeyedState)); } private static StateObjectCollection singletonOrEmptyOnNull(T element) { return element != null ? StateObjectCollection.singleton(element) : StateObjectCollection.empty(); } // -------------------------------------------------------------------------------------------- /** * Returns a handle to the managed operator state. */ @Nonnull public StateObjectCollection getManagedOperatorState() { return managedOperatorState; } /** * Returns a handle to the raw operator state. */ @Nonnull public StateObjectCollection getRawOperatorState() { return rawOperatorState; } /** * Returns a handle to the managed keyed state. */ @Nonnull public StateObjectCollection getManagedKeyedState() { return managedKeyedState; } /** * Returns a handle to the raw keyed state. */ @Nonnull public StateObjectCollection getRawKeyedState() { return rawKeyedState; } @Override public void discardState() { try { List toDispose = new ArrayList<>( managedOperatorState.size() + rawOperatorState.size() + managedKeyedState.size() + rawKeyedState.size()); toDispose.addAll(managedOperatorState); toDispose.addAll(rawOperatorState); toDispose.addAll(managedKeyedState); toDispose.addAll(rawKeyedState); StateUtil.bestEffortDiscardAllStateObjects(toDispose); } catch (Exception e) { LOG.warn("Error while discarding operator states.", e); } } @Override public void registerSharedStates(SharedStateRegistry sharedStateRegistry) { registerSharedState(sharedStateRegistry, managedKeyedState); registerSharedState(sharedStateRegistry, rawKeyedState); } private static void registerSharedState( SharedStateRegistry sharedStateRegistry, Iterable stateHandles) { for (KeyedStateHandle stateHandle : stateHandles) { if (stateHandle != null) { stateHandle.registerSharedStates(sharedStateRegistry); } } } @Override public long getStateSize() { return stateSize; } public long getFullStateSize() { return fullStateSize; } // -------------------------------------------------------------------------------------------- @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } OperatorSubtaskState that = (OperatorSubtaskState) o; if (getStateSize() != that.getStateSize()) { return false; } if (!getManagedOperatorState().equals(that.getManagedOperatorState())) { return false; } if (!getRawOperatorState().equals(that.getRawOperatorState())) { return false; } if (!getManagedKeyedState().equals(that.getManagedKeyedState())) { return false; } return getRawKeyedState().equals(that.getRawKeyedState()); } @Override public int hashCode() { int result = getManagedOperatorState().hashCode(); result = 31 * result + getRawOperatorState().hashCode(); result = 31 * result + getManagedKeyedState().hashCode(); result = 31 * result + getRawKeyedState().hashCode(); result = 31 * result + (int) (getStateSize() ^ (getStateSize() >>> 32)); return result; } @Override public String toString() { return "SubtaskState{" + "operatorStateFromBackend=" + managedOperatorState + ", operatorStateFromStream=" + rawOperatorState + ", keyedStateFromBackend=" + managedKeyedState + ", keyedStateFromStream=" + rawKeyedState + ", stateSize=" + stateSize + '}'; } public boolean hasState() { return managedOperatorState.hasState() || rawOperatorState.hasState() || managedKeyedState.hasState() || rawKeyedState.hasState(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy