Java Code Examples for org.apache.flink.runtime.state.AbstractKeyedStateBackend#snapshot()
The following examples show how to use
org.apache.flink.runtime.state.AbstractKeyedStateBackend#snapshot() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RocksDBStateBackendTest.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
@Test public void testSharedIncrementalStateDeRegistration() throws Exception { if (enableIncrementalCheckpointing) { AbstractKeyedStateBackend<Integer> backend = createKeyedBackend(IntSerializer.INSTANCE); try { ValueStateDescriptor<String> kvId = new ValueStateDescriptor<>("id", String.class, null); kvId.initializeSerializerUnlessSet(new ExecutionConfig()); ValueState<String> state = backend.getPartitionedState(VoidNamespace.INSTANCE, VoidNamespaceSerializer.INSTANCE, kvId); Queue<IncrementalRemoteKeyedStateHandle> previousStateHandles = new LinkedList<>(); SharedStateRegistry sharedStateRegistry = spy(new SharedStateRegistry()); for (int checkpointId = 0; checkpointId < 3; ++checkpointId) { reset(sharedStateRegistry); backend.setCurrentKey(checkpointId); state.update("Hello-" + checkpointId); RunnableFuture<SnapshotResult<KeyedStateHandle>> snapshot = backend.snapshot( checkpointId, checkpointId, createStreamFactory(), CheckpointOptions.forCheckpointWithDefaultLocation()); snapshot.run(); SnapshotResult<KeyedStateHandle> snapshotResult = snapshot.get(); IncrementalRemoteKeyedStateHandle stateHandle = (IncrementalRemoteKeyedStateHandle) snapshotResult.getJobManagerOwnedSnapshot(); Map<StateHandleID, StreamStateHandle> sharedState = new HashMap<>(stateHandle.getSharedState()); stateHandle.registerSharedStates(sharedStateRegistry); for (Map.Entry<StateHandleID, StreamStateHandle> e : sharedState.entrySet()) { verify(sharedStateRegistry).registerReference( stateHandle.createSharedStateRegistryKeyFromFileName(e.getKey()), e.getValue()); } previousStateHandles.add(stateHandle); backend.notifyCheckpointComplete(checkpointId); //----------------------------------------------------------------- if (previousStateHandles.size() > 1) { checkRemove(previousStateHandles.remove(), sharedStateRegistry); } } while (!previousStateHandles.isEmpty()) { reset(sharedStateRegistry); checkRemove(previousStateHandles.remove(), sharedStateRegistry); } } finally { IOUtils.closeQuietly(backend); backend.dispose(); } } }
Example 2
Source File: RocksDBAsyncSnapshotTest.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
/** * Test that the snapshot files are cleaned up in case of a failure during the snapshot * procedure. */ @Test public void testCleanupOfSnapshotsInFailureCase() throws Exception { long checkpointId = 1L; long timestamp = 42L; Environment env = new DummyEnvironment("test task", 1, 0); final IOException testException = new IOException("Test exception"); CheckpointStateOutputStream outputStream = spy(new FailingStream(testException)); RocksDBStateBackend backend = new RocksDBStateBackend((StateBackend) new MemoryStateBackend()); backend.setDbStoragePath(temporaryFolder.newFolder().toURI().toString()); AbstractKeyedStateBackend<Void> keyedStateBackend = backend.createKeyedStateBackend( env, new JobID(), "test operator", VoidSerializer.INSTANCE, 1, new KeyGroupRange(0, 0), null, TtlTimeProvider.DEFAULT, new UnregisteredMetricsGroup(), Collections.emptyList(), new CloseableRegistry()); try { // register a state so that the state backend has to checkpoint something keyedStateBackend.getPartitionedState( "namespace", StringSerializer.INSTANCE, new ValueStateDescriptor<>("foobar", String.class)); RunnableFuture<SnapshotResult<KeyedStateHandle>> snapshotFuture = keyedStateBackend.snapshot( checkpointId, timestamp, new TestCheckpointStreamFactory(() -> outputStream), CheckpointOptions.forCheckpointWithDefaultLocation()); try { FutureUtils.runIfNotDoneAndGet(snapshotFuture); fail("Expected an exception to be thrown here."); } catch (ExecutionException e) { Assert.assertEquals(testException, e.getCause()); } verify(outputStream).close(); } finally { IOUtils.closeQuietly(keyedStateBackend); keyedStateBackend.dispose(); } }
Example 3
Source File: RocksDBStateBackendTest.java From flink with Apache License 2.0 | 4 votes |
@Test public void testSharedIncrementalStateDeRegistration() throws Exception { if (enableIncrementalCheckpointing) { AbstractKeyedStateBackend<Integer> backend = createKeyedBackend(IntSerializer.INSTANCE); try { ValueStateDescriptor<String> kvId = new ValueStateDescriptor<>("id", String.class, null); kvId.initializeSerializerUnlessSet(new ExecutionConfig()); ValueState<String> state = backend.getPartitionedState(VoidNamespace.INSTANCE, VoidNamespaceSerializer.INSTANCE, kvId); Queue<IncrementalRemoteKeyedStateHandle> previousStateHandles = new LinkedList<>(); SharedStateRegistry sharedStateRegistry = spy(new SharedStateRegistry()); for (int checkpointId = 0; checkpointId < 3; ++checkpointId) { reset(sharedStateRegistry); backend.setCurrentKey(checkpointId); state.update("Hello-" + checkpointId); RunnableFuture<SnapshotResult<KeyedStateHandle>> snapshot = backend.snapshot( checkpointId, checkpointId, createStreamFactory(), CheckpointOptions.forCheckpointWithDefaultLocation()); snapshot.run(); SnapshotResult<KeyedStateHandle> snapshotResult = snapshot.get(); IncrementalRemoteKeyedStateHandle stateHandle = (IncrementalRemoteKeyedStateHandle) snapshotResult.getJobManagerOwnedSnapshot(); Map<StateHandleID, StreamStateHandle> sharedState = new HashMap<>(stateHandle.getSharedState()); stateHandle.registerSharedStates(sharedStateRegistry); for (Map.Entry<StateHandleID, StreamStateHandle> e : sharedState.entrySet()) { verify(sharedStateRegistry).registerReference( stateHandle.createSharedStateRegistryKeyFromFileName(e.getKey()), e.getValue()); } previousStateHandles.add(stateHandle); backend.notifyCheckpointComplete(checkpointId); //----------------------------------------------------------------- if (previousStateHandles.size() > 1) { checkRemove(previousStateHandles.remove(), sharedStateRegistry); } } while (!previousStateHandles.isEmpty()) { reset(sharedStateRegistry); checkRemove(previousStateHandles.remove(), sharedStateRegistry); } } finally { IOUtils.closeQuietly(backend); backend.dispose(); } } }
Example 4
Source File: RocksDBAsyncSnapshotTest.java From flink with Apache License 2.0 | 4 votes |
/** * Test that the snapshot files are cleaned up in case of a failure during the snapshot * procedure. */ @Test public void testCleanupOfSnapshotsInFailureCase() throws Exception { long checkpointId = 1L; long timestamp = 42L; Environment env = new DummyEnvironment("test task", 1, 0); final IOException testException = new IOException("Test exception"); CheckpointStateOutputStream outputStream = spy(new FailingStream(testException)); RocksDBStateBackend backend = new RocksDBStateBackend((StateBackend) new MemoryStateBackend()); backend.setDbStoragePath(temporaryFolder.newFolder().toURI().toString()); AbstractKeyedStateBackend<Void> keyedStateBackend = backend.createKeyedStateBackend( env, new JobID(), "test operator", VoidSerializer.INSTANCE, 1, new KeyGroupRange(0, 0), null, TtlTimeProvider.DEFAULT, new UnregisteredMetricsGroup(), Collections.emptyList(), new CloseableRegistry()); try { // register a state so that the state backend has to checkpoint something keyedStateBackend.getPartitionedState( "namespace", StringSerializer.INSTANCE, new ValueStateDescriptor<>("foobar", String.class)); RunnableFuture<SnapshotResult<KeyedStateHandle>> snapshotFuture = keyedStateBackend.snapshot( checkpointId, timestamp, new TestCheckpointStreamFactory(() -> outputStream), CheckpointOptions.forCheckpointWithDefaultLocation()); try { FutureUtils.runIfNotDoneAndGet(snapshotFuture); fail("Expected an exception to be thrown here."); } catch (ExecutionException e) { Assert.assertEquals(testException, e.getCause()); } verify(outputStream).close(); } finally { IOUtils.closeQuietly(keyedStateBackend); keyedStateBackend.dispose(); } }
Example 5
Source File: RocksDBStateBackendTest.java From flink with Apache License 2.0 | 4 votes |
@Test public void testSharedIncrementalStateDeRegistration() throws Exception { if (enableIncrementalCheckpointing) { AbstractKeyedStateBackend<Integer> backend = createKeyedBackend(IntSerializer.INSTANCE); try { ValueStateDescriptor<String> kvId = new ValueStateDescriptor<>("id", String.class, null); kvId.initializeSerializerUnlessSet(new ExecutionConfig()); ValueState<String> state = backend.getPartitionedState(VoidNamespace.INSTANCE, VoidNamespaceSerializer.INSTANCE, kvId); Queue<IncrementalRemoteKeyedStateHandle> previousStateHandles = new LinkedList<>(); SharedStateRegistry sharedStateRegistry = spy(new SharedStateRegistry()); for (int checkpointId = 0; checkpointId < 3; ++checkpointId) { reset(sharedStateRegistry); backend.setCurrentKey(checkpointId); state.update("Hello-" + checkpointId); RunnableFuture<SnapshotResult<KeyedStateHandle>> snapshot = backend.snapshot( checkpointId, checkpointId, createStreamFactory(), CheckpointOptions.forCheckpointWithDefaultLocation()); snapshot.run(); SnapshotResult<KeyedStateHandle> snapshotResult = snapshot.get(); IncrementalRemoteKeyedStateHandle stateHandle = (IncrementalRemoteKeyedStateHandle) snapshotResult.getJobManagerOwnedSnapshot(); Map<StateHandleID, StreamStateHandle> sharedState = new HashMap<>(stateHandle.getSharedState()); stateHandle.registerSharedStates(sharedStateRegistry); for (Map.Entry<StateHandleID, StreamStateHandle> e : sharedState.entrySet()) { verify(sharedStateRegistry).registerReference( stateHandle.createSharedStateRegistryKeyFromFileName(e.getKey()), e.getValue()); } previousStateHandles.add(stateHandle); backend.notifyCheckpointComplete(checkpointId); //----------------------------------------------------------------- if (previousStateHandles.size() > 1) { checkRemove(previousStateHandles.remove(), sharedStateRegistry); } } while (!previousStateHandles.isEmpty()) { reset(sharedStateRegistry); checkRemove(previousStateHandles.remove(), sharedStateRegistry); } } finally { IOUtils.closeQuietly(backend); backend.dispose(); } } }
Example 6
Source File: RocksDBAsyncSnapshotTest.java From flink with Apache License 2.0 | 4 votes |
/** * Test that the snapshot files are cleaned up in case of a failure during the snapshot * procedure. */ @Test public void testCleanupOfSnapshotsInFailureCase() throws Exception { long checkpointId = 1L; long timestamp = 42L; MockEnvironment env = MockEnvironment.builder().build(); final IOException testException = new IOException("Test exception"); CheckpointStateOutputStream outputStream = spy(new FailingStream(testException)); RocksDBStateBackend backend = new RocksDBStateBackend((StateBackend) new MemoryStateBackend()); backend.setDbStoragePath(temporaryFolder.newFolder().toURI().toString()); AbstractKeyedStateBackend<Void> keyedStateBackend = backend.createKeyedStateBackend( env, new JobID(), "test operator", VoidSerializer.INSTANCE, 1, new KeyGroupRange(0, 0), null, TtlTimeProvider.DEFAULT, new UnregisteredMetricsGroup(), Collections.emptyList(), new CloseableRegistry()); try { // register a state so that the state backend has to checkpoint something keyedStateBackend.getPartitionedState( "namespace", StringSerializer.INSTANCE, new ValueStateDescriptor<>("foobar", String.class)); RunnableFuture<SnapshotResult<KeyedStateHandle>> snapshotFuture = keyedStateBackend.snapshot( checkpointId, timestamp, new TestCheckpointStreamFactory(() -> outputStream), CheckpointOptions.forCheckpointWithDefaultLocation()); try { FutureUtils.runIfNotDoneAndGet(snapshotFuture); fail("Expected an exception to be thrown here."); } catch (ExecutionException e) { Assert.assertEquals(testException, e.getCause()); } verify(outputStream).close(); } finally { IOUtils.closeQuietly(keyedStateBackend); keyedStateBackend.dispose(); IOUtils.closeQuietly(env); } }