io.gearpump.streaming.hadoop

HadoopCheckpointStore

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

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

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

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

    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
  19. def recover(timestamp: TimeStamp): Option[Array[Byte]]

    recovers checkpoint given timestamp, which

    recovers checkpoint given timestamp, which

    1. returns None if no store exists 2. searches checkpoint stores for
      1. 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
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CheckpointStore

Inherited from AnyRef

Inherited from Any

Ungrouped