Interface CheckpointedResultPartition
-
- All Known Implementing Classes:
PipelinedResultPartition
public interface CheckpointedResultPartition
Interface 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 void
addRecovered(int subpartitionIndex, BufferConsumer bufferConsumer)
void
finishReadRecoveredState(boolean notifyAndBlockOnCompletion)
ResultSubpartitionInfo
getCheckpointedSubpartitionInfo(int subpartitionIndex)
Gets the checkpointed subpartition info with the given subpartitionIndex.BufferBuilder
requestBufferBuilderBlocking()
-
-
-
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
-
-