| /* |
| * 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.annotation.VisibleForTesting; |
| import org.apache.flink.core.fs.CloseableRegistry; |
| import org.apache.flink.runtime.state.AsyncSnapshotCallable.AsyncSnapshotTask; |
| import org.apache.flink.util.ExceptionUtils; |
| import org.apache.flink.util.Preconditions; |
| |
| import javax.annotation.Nonnull; |
| import javax.annotation.Nullable; |
| |
| import java.io.IOException; |
| import java.util.concurrent.RunnableFuture; |
| |
| /** This class is a default implementation for StateSnapshotContext. */ |
| public class StateSnapshotContextSynchronousImpl implements StateSnapshotContext { |
| |
| /** Checkpoint id of the snapshot. */ |
| private final long checkpointId; |
| |
| /** Checkpoint timestamp of the snapshot. */ |
| private final long checkpointTimestamp; |
| |
| /** Factory for the checkpointing stream. */ |
| private final CheckpointStreamFactory streamFactory; |
| |
| /** Key group range for the operator that created this context. Only for keyed operators. */ |
| private final KeyGroupRange keyGroupRange; |
| |
| /** |
| * Registry for opened streams to participate in the lifecycle of the stream task. Hence, this |
| * registry should be obtained from and managed by the stream task. |
| */ |
| private final CloseableRegistry closableRegistry; |
| |
| /** Output stream for the raw keyed state. */ |
| private KeyedStateCheckpointOutputStream keyedStateCheckpointOutputStream; |
| |
| /** Output stream for the raw operator state. */ |
| private OperatorStateCheckpointOutputStream operatorStateCheckpointOutputStream; |
| |
| protected RunnableFuture<SnapshotResult<KeyedStateHandle>> keyedStateCheckpointClosingFuture; |
| protected RunnableFuture<SnapshotResult<OperatorStateHandle>> |
| operatorStateCheckpointClosingFuture; |
| |
| @VisibleForTesting |
| public StateSnapshotContextSynchronousImpl(long checkpointId, long checkpointTimestamp) { |
| this.checkpointId = checkpointId; |
| this.checkpointTimestamp = checkpointTimestamp; |
| this.streamFactory = null; |
| this.keyGroupRange = KeyGroupRange.EMPTY_KEY_GROUP_RANGE; |
| this.closableRegistry = new CloseableRegistry(); |
| } |
| |
| public StateSnapshotContextSynchronousImpl( |
| long checkpointId, |
| long checkpointTimestamp, |
| CheckpointStreamFactory streamFactory, |
| KeyGroupRange keyGroupRange, |
| CloseableRegistry closableRegistry) { |
| |
| this.checkpointId = checkpointId; |
| this.checkpointTimestamp = checkpointTimestamp; |
| this.streamFactory = Preconditions.checkNotNull(streamFactory); |
| this.keyGroupRange = Preconditions.checkNotNull(keyGroupRange); |
| this.closableRegistry = Preconditions.checkNotNull(closableRegistry); |
| } |
| |
| @Override |
| public long getCheckpointId() { |
| return checkpointId; |
| } |
| |
| @Override |
| public long getCheckpointTimestamp() { |
| return checkpointTimestamp; |
| } |
| |
| private CheckpointStateOutputStream openAndRegisterNewStream() throws Exception { |
| CheckpointStateOutputStream cout = |
| streamFactory.createCheckpointStateOutputStream(CheckpointedStateScope.EXCLUSIVE); |
| |
| closableRegistry.registerCloseable(cout); |
| return cout; |
| } |
| |
| @Override |
| public KeyedStateCheckpointOutputStream getRawKeyedOperatorStateOutput() throws Exception { |
| if (null == keyedStateCheckpointOutputStream) { |
| Preconditions.checkState( |
| keyGroupRange != KeyGroupRange.EMPTY_KEY_GROUP_RANGE, "Not a keyed operator"); |
| keyedStateCheckpointOutputStream = |
| new KeyedStateCheckpointOutputStream(openAndRegisterNewStream(), keyGroupRange); |
| } |
| return keyedStateCheckpointOutputStream; |
| } |
| |
| @Override |
| public OperatorStateCheckpointOutputStream getRawOperatorStateOutput() throws Exception { |
| if (null == operatorStateCheckpointOutputStream) { |
| operatorStateCheckpointOutputStream = |
| new OperatorStateCheckpointOutputStream(openAndRegisterNewStream()); |
| } |
| return operatorStateCheckpointOutputStream; |
| } |
| |
| @Nonnull |
| public RunnableFuture<SnapshotResult<KeyedStateHandle>> getKeyedStateStreamFuture() |
| throws IOException { |
| if (null == keyedStateCheckpointClosingFuture) { |
| StreamCloserCallable<KeyGroupsStateHandle> callable = |
| new StreamCloserCallable<>(closableRegistry, keyedStateCheckpointOutputStream); |
| AsyncSnapshotTask asyncSnapshotTask = |
| callable.toAsyncSnapshotFutureTask(closableRegistry); |
| keyedStateCheckpointClosingFuture = castAsKeyedStateHandle(asyncSnapshotTask); |
| } |
| return keyedStateCheckpointClosingFuture; |
| } |
| |
| @Nonnull |
| public RunnableFuture<SnapshotResult<OperatorStateHandle>> getOperatorStateStreamFuture() |
| throws IOException { |
| if (null == operatorStateCheckpointClosingFuture) { |
| StreamCloserCallable<OperatorStateHandle> callable = |
| new StreamCloserCallable<>( |
| closableRegistry, operatorStateCheckpointOutputStream); |
| operatorStateCheckpointClosingFuture = |
| callable.toAsyncSnapshotFutureTask(closableRegistry); |
| } |
| return operatorStateCheckpointClosingFuture; |
| } |
| |
| @SuppressWarnings("unchecked") |
| private static RunnableFuture<SnapshotResult<KeyedStateHandle>> castAsKeyedStateHandle( |
| RunnableFuture<?> asyncSnapshotTask) { |
| return (RunnableFuture<SnapshotResult<KeyedStateHandle>>) asyncSnapshotTask; |
| } |
| |
| private <T extends StreamStateHandle> void closeAndUnregisterStream( |
| NonClosingCheckpointOutputStream<? extends T> stream) throws IOException { |
| |
| Preconditions.checkNotNull(stream); |
| |
| CheckpointStateOutputStream delegate = stream.getDelegate(); |
| |
| if (closableRegistry.unregisterCloseable(delegate)) { |
| delegate.close(); |
| } |
| } |
| |
| public void closeExceptionally() throws IOException { |
| IOException exception = null; |
| if (keyedStateCheckpointOutputStream != null) { |
| try { |
| closeAndUnregisterStream(keyedStateCheckpointOutputStream); |
| } catch (IOException e) { |
| exception = |
| new IOException( |
| "Could not close the raw keyed state checkpoint output stream.", e); |
| } |
| } |
| if (operatorStateCheckpointOutputStream != null) { |
| try { |
| closeAndUnregisterStream(operatorStateCheckpointOutputStream); |
| } catch (IOException e) { |
| exception = |
| ExceptionUtils.firstOrSuppressed( |
| new IOException( |
| "Could not close the raw operator state checkpoint output stream.", |
| e), |
| exception); |
| } |
| } |
| if (keyedStateCheckpointClosingFuture != null) { |
| keyedStateCheckpointClosingFuture.cancel(true); |
| } |
| if (operatorStateCheckpointClosingFuture != null) { |
| operatorStateCheckpointClosingFuture.cancel(true); |
| } |
| if (exception != null) { |
| throw exception; |
| } |
| } |
| |
| private static final class StreamCloserCallable<T extends StreamStateHandle> |
| extends AsyncSnapshotCallable<SnapshotResult<T>> { |
| |
| @Nullable private final NonClosingCheckpointOutputStream<T> stream; |
| private final CloseableRegistry closableRegistry; |
| |
| StreamCloserCallable( |
| CloseableRegistry closableRegistry, |
| @Nullable NonClosingCheckpointOutputStream<T> stream) { |
| this.closableRegistry = Preconditions.checkNotNull(closableRegistry); |
| this.stream = stream; |
| } |
| |
| @Override |
| protected SnapshotResult<T> callInternal() throws Exception { |
| if (stream == null) { |
| return SnapshotResult.of(null); |
| } |
| if (!closableRegistry.unregisterCloseable(stream.getDelegate())) { |
| throw new IOException( |
| "Stream delegate appears to be closed, because it is no longer registered."); |
| } |
| T closed = stream.closeAndGetHandle(); |
| return SnapshotResult.of(closed); |
| } |
| |
| @Override |
| protected void cleanupProvidedResources() { |
| try { |
| if (stream != null && closableRegistry.unregisterCloseable(stream.getDelegate())) { |
| stream.closeAndGetHandle(); |
| } |
| } catch (IOException e) { |
| throw new IllegalStateException("Unable to cleanup a stream.", e); |
| } |
| } |
| } |
| } |