Packages

package util

Type Members

  1. abstract class WriteAheadLog extends AnyRef

    :: DeveloperApi ::

    :: DeveloperApi ::

    This abstract class represents a write ahead log (aka journal) that is used by Spark Streaming to save the received data (by receivers) and associated metadata to a reliable storage, so that they can be recovered after driver failures. See the Spark documentation for more information on how to plug in your own custom implementation of a write ahead log.

    Annotations
    @DeveloperApi()
  2. abstract class WriteAheadLogRecordHandle extends Serializable

    :: DeveloperApi ::

    :: DeveloperApi ::

    This abstract class represents a handle that refers to a record written in a WriteAheadLog. It must contain all the information necessary for the record to be read and returned by an implementation of the WriteAheadLog class.

    Annotations
    @DeveloperApi()
    See also

    org.apache.spark.streaming.util.WriteAheadLog

Ungrouped