Interface CheckpointedResultPartition
-
- All Known Implementing Classes:
PipelinedResultPartition
public interface CheckpointedResultPartitionInterface for partitions that are checkpointed, meaning they store data as part of unaligned checkpoints.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddRecovered(int subpartitionIndex, BufferConsumer bufferConsumer)voidfinishReadRecoveredState(boolean notifyAndBlockOnCompletion)ResultSubpartitionInfogetCheckpointedSubpartitionInfo(int subpartitionIndex)Gets the checkpointed subpartition info with the given subpartitionIndex.BufferBuilderrequestBufferBuilderBlocking()
-
-
-
Method Detail
-
getCheckpointedSubpartitionInfo
ResultSubpartitionInfo getCheckpointedSubpartitionInfo(int subpartitionIndex)
Gets the checkpointed subpartition info with the given subpartitionIndex.
-
finishReadRecoveredState
void finishReadRecoveredState(boolean notifyAndBlockOnCompletion) throws IOException- Throws:
IOException
-
requestBufferBuilderBlocking
BufferBuilder requestBufferBuilderBlocking() throws IOException, RuntimeException, InterruptedException
-
addRecovered
void addRecovered(int subpartitionIndex, BufferConsumer bufferConsumer) throws IOException- Throws:
IOException
-
-