Interface SourceReader<T,​SplitT extends SourceSplit>

    • Method Detail

      • start

        void start()
        Start the reader.
      • pollNext

        InputStatus pollNext​(ReaderOutput<T> output)
                      throws Exception
        Poll the next available record into the ReaderOutput.

        The implementation must make sure this method is non-blocking.

        Although the implementation can emit multiple records into the given ReaderOutput, it is recommended not doing so. Instead, emit one record into the ReaderOutput and return a InputStatus.MORE_AVAILABLE to let the caller thread know there are more records available.

        Returns:
        The InputStatus of the SourceReader after the method invocation.
        Throws:
        Exception
      • snapshotState

        List<SplitT> snapshotState​(long checkpointId)
        Checkpoint on the state of the source.
        Returns:
        the state of the source.
      • isAvailable

        CompletableFuture<Void> isAvailable()
        Returns a future that signals that data is available from the reader.

        Once the future completes, the runtime will keep calling the pollNext(ReaderOutput) method until that method returns a status other than InputStatus.MORE_AVAILABLE. After that, the runtime will again call this method to obtain the next future. Once that completes, it will again call pollNext(ReaderOutput) and so on.

        The contract is the following: If the reader has data available, then all futures previously returned by this method must eventually complete. Otherwise the source might stall indefinitely.

        It is not a problem to have occasional "false positives", meaning to complete a future even if no data is available. However, one should not use an "always complete" future in cases no data is available, because that will result in busy waiting loops calling pollNext(...) even though no data is available.

        Returns:
        a future that will be completed once there is a record available to poll.
      • notifyNoMoreSplits

        void notifyNoMoreSplits()
        This method is called when the reader is notified that it will not receive any further splits.

        It is triggered when the enumerator calls SplitEnumeratorContext.signalNoMoreSplits(int) with the reader's parallel subtask.

      • notifyCheckpointComplete

        default void notifyCheckpointComplete​(long checkpointId)
                                       throws Exception
        We have an empty default implementation here because most source readers do not have to implement the method.
        Specified by:
        notifyCheckpointComplete in interface CheckpointListener
        Parameters:
        checkpointId - The ID of the checkpoint that has been completed.
        Throws:
        Exception - This method can propagate exceptions, which leads to a failure/recovery for the task. Note that this will NOT lead to the checkpoint being revoked.
        See Also:
        CheckpointListener.notifyCheckpointComplete(long)
      • pauseOrResumeSplits

        @PublicEvolving
        default void pauseOrResumeSplits​(Collection<String> splitsToPause,
                                         Collection<String> splitsToResume)
        Pauses or resumes reading of individual source splits.

        Note that no other methods can be called in parallel, so updating subscriptions can be done atomically. This method is simply providing connectors with more expressive APIs the opportunity to update all subscriptions at once.

        This is currently used to align the watermarks of splits, if watermark alignment is used and the source reads from more than one split.

        The default implementation throws an UnsupportedOperationException where the default implementation will be removed in future releases. To be compatible with future releases, it is recommended to implement this method and override the default implementation.

        Parameters:
        splitsToPause - the splits to pause
        splitsToResume - the splits to resume