Uses of Class
org.apache.flink.runtime.checkpoint.StateObjectCollection
Packages that use StateObjectCollection
Package
Description
-
Uses of StateObjectCollection in org.apache.flink.runtime.checkpoint
Methods in org.apache.flink.runtime.checkpoint that return StateObjectCollectionModifier and TypeMethodDescriptionprotected StateObjectCollection<?>StateObjectCollectionSerializer.create(com.esotericsoftware.kryo.Kryo kryo, com.esotericsoftware.kryo.io.Input input, Class<? extends StateObjectCollection<?>> type, int size) static <T extends StateObject>
StateObjectCollection<T>StateObjectCollection.empty()static <T extends StateObject>
StateObjectCollection<T>StateObjectCollection.emptyIfNull(StateObjectCollection<T> collection) OperatorSubtaskState.getInputChannelState()PrioritizedOperatorSubtaskState.getJobManagerManagedKeyedState()Returns the managed keyed state from the job manager, which represents the ground truth about what this state should represent.PrioritizedOperatorSubtaskState.getJobManagerManagedOperatorState()Returns the managed operator state from the job manager, which represents the ground truth about what this state should represent.PrioritizedOperatorSubtaskState.getJobManagerRawKeyedState()Returns the raw keyed state from the job manager, which represents the ground truth about what this state should represent.PrioritizedOperatorSubtaskState.getJobManagerRawOperatorState()Returns the raw operator state from the job manager, which represents the ground truth about what this state should represent.OperatorSubtaskState.getManagedKeyedState()OperatorSubtaskState.getManagedOperatorState()PrioritizedOperatorSubtaskState.getPrioritizedInputChannelState()PrioritizedOperatorSubtaskState.getPrioritizedResultSubpartitionState()OperatorSubtaskState.getRawKeyedState()OperatorSubtaskState.getRawOperatorState()OperatorSubtaskState.getResultSubpartitionState()static <T extends StateObject>
StateObjectCollection<T>StateObjectCollection.singleton(T stateObject) static <T extends StateObject>
StateObjectCollection<T>StateObjectCollection.singletonOrEmpty(T stateObject) Methods in org.apache.flink.runtime.checkpoint that return types with arguments of type StateObjectCollectionModifier and TypeMethodDescriptionPrioritizedOperatorSubtaskState.getPrioritizedManagedKeyedState()Returns an immutable list with all alternative snapshots to restore the managed keyed state, in the order in which we should attempt to restore.PrioritizedOperatorSubtaskState.getPrioritizedManagedOperatorState()Returns an immutable list with all alternative snapshots to restore the managed operator state, in the order in which we should attempt to restore.PrioritizedOperatorSubtaskState.getPrioritizedRawKeyedState()Returns an immutable list with all alternative snapshots to restore the raw keyed state, in the order in which we should attempt to restore.PrioritizedOperatorSubtaskState.getPrioritizedRawOperatorState()Returns an immutable list with all alternative snapshots to restore the raw operator state, in the order in which we should attempt to restore.Methods in org.apache.flink.runtime.checkpoint with parameters of type StateObjectCollectionModifier and TypeMethodDescriptionstatic <T extends StateObject>
StateObjectCollection<T>StateObjectCollection.emptyIfNull(StateObjectCollection<T> collection) OperatorSubtaskState.Builder.setInputChannelState(StateObjectCollection<InputChannelStateHandle> inputChannelState) OperatorSubtaskState.Builder.setManagedKeyedState(StateObjectCollection<KeyedStateHandle> managedKeyedState) OperatorSubtaskState.Builder.setManagedOperatorState(StateObjectCollection<OperatorStateHandle> managedOperatorState) OperatorSubtaskState.Builder.setRawKeyedState(StateObjectCollection<KeyedStateHandle> rawKeyedState) OperatorSubtaskState.Builder.setRawOperatorState(StateObjectCollection<OperatorStateHandle> rawOperatorState) OperatorSubtaskState.Builder.setResultSubpartitionState(StateObjectCollection<ResultSubpartitionStateHandle> resultSubpartitionState) Method parameters in org.apache.flink.runtime.checkpoint with type arguments of type StateObjectCollectionModifier and TypeMethodDescriptionprotected StateObjectCollection<?>StateObjectCollectionSerializer.create(com.esotericsoftware.kryo.Kryo kryo, com.esotericsoftware.kryo.io.Input input, Class<? extends StateObjectCollection<?>> type, int size) static <T extends StateObject>
voidStateAssignmentOperation.reDistributePartitionableStates(Map<OperatorID, OperatorState> oldOperatorStates, int newParallelism, Function<OperatorSubtaskState, StateObjectCollection<T>> extractHandle, OperatorStateRepartitioner<T> stateRepartitioner, Map<OperatorInstanceID, List<T>> result) -
Uses of StateObjectCollection in org.apache.flink.runtime.checkpoint.metadata
Methods in org.apache.flink.runtime.checkpoint.metadata that return StateObjectCollectionModifier and TypeMethodDescriptionprotected StateObjectCollection<InputChannelStateHandle>MetadataV2V3SerializerBase.deserializeInputChannelStateHandle(DataInputStream dis, MetadataV2V3SerializerBase.DeserializationContext context) MetadataV3Serializer.deserializeInputChannelStateHandle(DataInputStream dis) MetadataV3Serializer.deserializeInputChannelStateHandle(DataInputStream dis, MetadataV2V3SerializerBase.DeserializationContext context) MetadataV2V3SerializerBase.deserializeResultSubpartitionStateHandle(DataInputStream dis, MetadataV2V3SerializerBase.DeserializationContext context) MetadataV3Serializer.deserializeResultSubpartitionStateHandle(DataInputStream dis) MetadataV3Serializer.deserializeResultSubpartitionStateHandle(DataInputStream dis, MetadataV2V3SerializerBase.DeserializationContext context) -
Uses of StateObjectCollection in org.apache.flink.runtime.state
Method parameters in org.apache.flink.runtime.state with type arguments of type StateObjectCollectionModifier and TypeMethodDescriptionstatic Stream<StreamStateHandle>AbstractChannelStateHandle.collectUniqueDelegates(Stream<StateObjectCollection<? extends AbstractChannelStateHandle<?>>> collections) -
Uses of StateObjectCollection in org.apache.flink.streaming.api.operators
Methods in org.apache.flink.streaming.api.operators that return types with arguments of type StateObjectCollectionModifier and TypeMethodDescriptionOperatorSnapshotFutures.getInputChannelStateFuture()OperatorSnapshotFutures.getResultSubpartitionStateFuture()Method parameters in org.apache.flink.streaming.api.operators with type arguments of type StateObjectCollectionModifier and TypeMethodDescriptionprotected org.apache.flink.util.CloseableIterable<KeyGroupStatePartitionStreamProvider>StreamTaskStateInitializerImpl.rawKeyedStateInputs(Iterator<StateObjectCollection<KeyedStateHandle>> restoreStateAlternatives, StateObject.StateObjectSizeStatsCollector statsCollector) protected org.apache.flink.util.CloseableIterable<StatePartitionStreamProvider>StreamTaskStateInitializerImpl.rawOperatorStateInputs(Iterator<StateObjectCollection<OperatorStateHandle>> restoreStateAlternatives, StateObject.StateObjectSizeStatsCollector statsCollector) voidOperatorSnapshotFutures.setInputChannelStateFuture(Future<SnapshotResult<StateObjectCollection<InputChannelStateHandle>>> inputChannelStateFuture) voidOperatorSnapshotFutures.setResultSubpartitionStateFuture(Future<SnapshotResult<StateObjectCollection<ResultSubpartitionStateHandle>>> resultSubpartitionStateFuture) Constructor parameters in org.apache.flink.streaming.api.operators with type arguments of type StateObjectCollectionModifierConstructorDescriptionOperatorSnapshotFutures(RunnableFuture<SnapshotResult<KeyedStateHandle>> keyedStateManagedFuture, RunnableFuture<SnapshotResult<KeyedStateHandle>> keyedStateRawFuture, RunnableFuture<SnapshotResult<OperatorStateHandle>> operatorStateManagedFuture, RunnableFuture<SnapshotResult<OperatorStateHandle>> operatorStateRawFuture, Future<SnapshotResult<StateObjectCollection<InputChannelStateHandle>>> inputChannelStateFuture, Future<SnapshotResult<StateObjectCollection<ResultSubpartitionStateHandle>>> resultSubpartitionStateFuture)