K - The key by which state is keyed.@Internal public class ChangelogKeyedStateBackend<K> extends Object implements org.apache.flink.runtime.state.CheckpointableKeyedStateBackend<K>, org.apache.flink.api.common.state.CheckpointListener, org.apache.flink.runtime.state.TestableKeyedStateBackend<K>
KeyedStateBackend that keeps state on the underlying delegated keyed state backend as
well as on the state change log.| Constructor and Description |
|---|
ChangelogKeyedStateBackend(org.apache.flink.runtime.state.AbstractKeyedStateBackend<K> keyedStateBackend,
org.apache.flink.api.common.ExecutionConfig executionConfig,
org.apache.flink.runtime.state.ttl.TtlTimeProvider ttlTimeProvider,
org.apache.flink.runtime.state.changelog.StateChangelogWriter<org.apache.flink.runtime.state.changelog.ChangelogStateHandle> stateChangelogWriter,
Collection<org.apache.flink.runtime.state.changelog.ChangelogStateBackendHandle> initialState,
org.apache.flink.api.common.operators.MailboxExecutor mainMailboxExecutor,
ExecutorService asyncOperationsThreadPool) |
| Modifier and Type | Method and Description |
|---|---|
<N,S extends org.apache.flink.api.common.state.State,T> |
applyToAllKeys(N namespace,
org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer,
org.apache.flink.api.common.state.StateDescriptor<S,T> stateDescriptor,
org.apache.flink.runtime.state.KeyedStateFunction<K,S> function) |
void |
close() |
<T extends org.apache.flink.runtime.state.heap.HeapPriorityQueueElement & org.apache.flink.runtime.state.PriorityComparable<? super T> & org.apache.flink.runtime.state.Keyed<?>> |
create(String stateName,
org.apache.flink.api.common.typeutils.TypeSerializer<T> byteOrderedElementSerializer) |
<N,SV,SEV,S extends org.apache.flink.api.common.state.State,IS extends S> |
createInternalState(org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer,
org.apache.flink.api.common.state.StateDescriptor<S,SV> stateDesc,
org.apache.flink.runtime.state.StateSnapshotTransformer.StateSnapshotTransformFactory<SEV> snapshotTransformFactory) |
boolean |
deregisterKeySelectionListener(org.apache.flink.runtime.state.KeyedStateBackend.KeySelectionListener<K> listener) |
void |
dispose() |
K |
getCurrentKey() |
org.apache.flink.runtime.state.KeyedStateBackend<K> |
getDelegatedKeyedStateBackend(boolean recursive) |
ChangelogState |
getExistingStateForRecovery(String name,
org.apache.flink.runtime.state.metainfo.StateMetaInfoSnapshot.BackendStateType type) |
org.apache.flink.runtime.state.KeyGroupRange |
getKeyGroupRange() |
<N> java.util.stream.Stream<K> |
getKeys(String state,
N namespace) |
<N> java.util.stream.Stream<org.apache.flink.api.java.tuple.Tuple2<K,N>> |
getKeysAndNamespaces(String state) |
org.apache.flink.api.common.typeutils.TypeSerializer<K> |
getKeySerializer() |
<N,S extends org.apache.flink.api.common.state.State,T> |
getOrCreateKeyedState(org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer,
org.apache.flink.api.common.state.StateDescriptor<S,T> stateDescriptor) |
<N,S extends org.apache.flink.api.common.state.State> |
getPartitionedState(N namespace,
org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer,
org.apache.flink.api.common.state.StateDescriptor<S,?> stateDescriptor) |
boolean |
isStateImmutableInStateBackend(org.apache.flink.runtime.checkpoint.CheckpointType checkpointOptions) |
void |
notifyCheckpointAborted(long checkpointId) |
void |
notifyCheckpointComplete(long checkpointId) |
int |
numKeyValueStateEntries() |
void |
registerKeySelectionListener(org.apache.flink.runtime.state.KeyedStateBackend.KeySelectionListener<K> listener) |
org.apache.flink.runtime.state.SavepointResources<K> |
savepoint() |
void |
setCurrentKey(K newKey) |
RunnableFuture<org.apache.flink.runtime.state.SnapshotResult<org.apache.flink.runtime.state.KeyedStateHandle>> |
snapshot(long checkpointId,
long timestamp,
org.apache.flink.runtime.state.CheckpointStreamFactory streamFactory,
org.apache.flink.runtime.checkpoint.CheckpointOptions checkpointOptions) |
public ChangelogKeyedStateBackend(org.apache.flink.runtime.state.AbstractKeyedStateBackend<K> keyedStateBackend, org.apache.flink.api.common.ExecutionConfig executionConfig, org.apache.flink.runtime.state.ttl.TtlTimeProvider ttlTimeProvider, org.apache.flink.runtime.state.changelog.StateChangelogWriter<org.apache.flink.runtime.state.changelog.ChangelogStateHandle> stateChangelogWriter, Collection<org.apache.flink.runtime.state.changelog.ChangelogStateBackendHandle> initialState, org.apache.flink.api.common.operators.MailboxExecutor mainMailboxExecutor, ExecutorService asyncOperationsThreadPool)
public org.apache.flink.runtime.state.KeyGroupRange getKeyGroupRange()
getKeyGroupRange in interface org.apache.flink.runtime.state.CheckpointableKeyedStateBackend<K>public void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableIOExceptionpublic void setCurrentKey(K newKey)
setCurrentKey in interface org.apache.flink.runtime.state.KeyedStateBackend<K>public K getCurrentKey()
getCurrentKey in interface org.apache.flink.runtime.state.KeyedStateBackend<K>public org.apache.flink.api.common.typeutils.TypeSerializer<K> getKeySerializer()
getKeySerializer in interface org.apache.flink.runtime.state.KeyedStateBackend<K>public <N> java.util.stream.Stream<K> getKeys(String state, N namespace)
getKeys in interface org.apache.flink.runtime.state.KeyedStateBackend<K>public <N> java.util.stream.Stream<org.apache.flink.api.java.tuple.Tuple2<K,N>> getKeysAndNamespaces(String state)
getKeysAndNamespaces in interface org.apache.flink.runtime.state.KeyedStateBackend<K>public void dispose()
dispose in interface org.apache.flink.runtime.state.KeyedStateBackend<K>dispose in interface org.apache.flink.util.Disposablepublic void registerKeySelectionListener(org.apache.flink.runtime.state.KeyedStateBackend.KeySelectionListener<K> listener)
registerKeySelectionListener in interface org.apache.flink.runtime.state.KeyedStateBackend<K>public boolean deregisterKeySelectionListener(org.apache.flink.runtime.state.KeyedStateBackend.KeySelectionListener<K> listener)
deregisterKeySelectionListener in interface org.apache.flink.runtime.state.KeyedStateBackend<K>public <N,S extends org.apache.flink.api.common.state.State,T> void applyToAllKeys(N namespace,
org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer,
org.apache.flink.api.common.state.StateDescriptor<S,T> stateDescriptor,
org.apache.flink.runtime.state.KeyedStateFunction<K,S> function)
throws Exception
public <N,S extends org.apache.flink.api.common.state.State> S getPartitionedState(N namespace,
org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer,
org.apache.flink.api.common.state.StateDescriptor<S,?> stateDescriptor)
throws Exception
@Nonnull public RunnableFuture<org.apache.flink.runtime.state.SnapshotResult<org.apache.flink.runtime.state.KeyedStateHandle>> snapshot(long checkpointId, long timestamp, @Nonnull org.apache.flink.runtime.state.CheckpointStreamFactory streamFactory, @Nonnull org.apache.flink.runtime.checkpoint.CheckpointOptions checkpointOptions) throws Exception
snapshot in interface org.apache.flink.runtime.state.Snapshotable<org.apache.flink.runtime.state.SnapshotResult<org.apache.flink.runtime.state.KeyedStateHandle>>Exception@Nonnull public <T extends org.apache.flink.runtime.state.heap.HeapPriorityQueueElement & org.apache.flink.runtime.state.PriorityComparable<? super T> & org.apache.flink.runtime.state.Keyed<?>> org.apache.flink.runtime.state.KeyGroupedInternalPriorityQueue<T> create(@Nonnull String stateName, @Nonnull org.apache.flink.api.common.typeutils.TypeSerializer<T> byteOrderedElementSerializer)
create in interface org.apache.flink.runtime.state.PriorityQueueSetFactory@VisibleForTesting public int numKeyValueStateEntries()
numKeyValueStateEntries in interface org.apache.flink.runtime.state.TestableKeyedStateBackend<K>public boolean isStateImmutableInStateBackend(org.apache.flink.runtime.checkpoint.CheckpointType checkpointOptions)
isStateImmutableInStateBackend in interface org.apache.flink.runtime.state.KeyedStateBackend<K>@Nonnull public org.apache.flink.runtime.state.SavepointResources<K> savepoint() throws Exception
public void notifyCheckpointComplete(long checkpointId)
throws Exception
notifyCheckpointComplete in interface org.apache.flink.api.common.state.CheckpointListenerExceptionpublic void notifyCheckpointAborted(long checkpointId)
throws Exception
notifyCheckpointAborted in interface org.apache.flink.api.common.state.CheckpointListenerExceptionpublic <N,S extends org.apache.flink.api.common.state.State,T> S getOrCreateKeyedState(org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer,
org.apache.flink.api.common.state.StateDescriptor<S,T> stateDescriptor)
throws Exception
@Nonnull public <N,SV,SEV,S extends org.apache.flink.api.common.state.State,IS extends S> IS createInternalState(@Nonnull org.apache.flink.api.common.typeutils.TypeSerializer<N> namespaceSerializer, @Nonnull org.apache.flink.api.common.state.StateDescriptor<S,SV> stateDesc, @Nonnull org.apache.flink.runtime.state.StateSnapshotTransformer.StateSnapshotTransformFactory<SEV> snapshotTransformFactory) throws Exception
createInternalState in interface org.apache.flink.runtime.state.KeyedStateFactoryExceptionpublic org.apache.flink.runtime.state.KeyedStateBackend<K> getDelegatedKeyedStateBackend(boolean recursive)
getDelegatedKeyedStateBackend in interface org.apache.flink.runtime.state.TestableKeyedStateBackend<K>public ChangelogState getExistingStateForRecovery(String name, org.apache.flink.runtime.state.metainfo.StateMetaInfoSnapshot.BackendStateType type) throws NoSuchElementException, UnsupportedOperationException
name - state nametype - state type (the only supported type currently are: key value, priority
queue)NoSuchElementException - if the state wasn't createdUnsupportedOperationException - if state type is not supportedCopyright © 2014–2021 The Apache Software Foundation. All rights reserved.