Class/Object

org.apache.gearpump.streaming.hadoop

HadoopCheckpointStore

Related Docs: object HadoopCheckpointStore | package hadoop

Permalink

class HadoopCheckpointStore extends CheckpointStore

Stores timestamp-checkpoint mapping to Hadoop-compatible filesystem.

Store file layout:

timestamp1, index1,
timestamp2, index2,
...
timestampN, indexN
Linear Supertypes
CheckpointStore, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HadoopCheckpointStore
  2. CheckpointStore
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HadoopCheckpointStore(dir: Path, fs: FileSystem, hadoopConfig: Configuration, rotation: Rotation)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def close(): Unit

    Permalink
    Definition Classes
    HadoopCheckpointStore → CheckpointStore
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. def persist(timestamp: TimeStamp, checkpoint: Array[Byte]): Unit

    Permalink

    Persists a pair of timestamp and checkpoint, which:

    Persists a pair of timestamp and checkpoint, which:

    1. creates a temporary checkpoint file, checkpoints-$startTime.store, if not exist 2. writes out (timestamp, checkpoint) and marks rotation 3. rotates checkpoint file if needed
      1. renames temporary checkpoint file to checkpoints-$startTime-$endTime.store b. closes current writer and reset c. rotation rotates
    Definition Classes
    HadoopCheckpointStore → CheckpointStore
  17. def recover(timestamp: TimeStamp): Option[Array[Byte]]

    Permalink

    Recovers checkpoint given timestamp, which

    Recovers checkpoint given timestamp, which

    1. returns None if no store exists
    2. searches checkpoint stores for
      a. complete store checkpoints-$startTime-$endTime.store
          where startTime <= timestamp <= endTime
      b. temporary store checkpoints-$startTime.store
          where startTime <= timestamp
    3. renames store to checkpoints-$startTime-$endTime.store
    4. deletes all stores whose name has a startTime larger than timestamp
    5. looks for the checkpoint in the found store
    Definition Classes
    HadoopCheckpointStore → CheckpointStore
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CheckpointStore

Inherited from AnyRef

Inherited from Any

Ungrouped