| Interface | Description |
|---|---|
| CheckpointIDCounter |
A checkpoint ID counter.
|
| CheckpointRecoveryFactory |
A factory for per Job checkpoint recovery components.
|
| CompletedCheckpointStore |
A bounded LIFO-queue of
CompletedCheckpoint instances. |
| StateStore<T extends Serializable> |
A simple
org.apache.flink.runtime.state.StateBackend backend object
store interface. |
| Class | Description |
|---|---|
| CheckpointCoordinator |
The checkpoint coordinator coordinates the distributed snapshots of operators and state.
|
| CheckpointCoordinatorDeActivator |
This actor listens to changes in the JobStatus and activates or deactivates the periodic
checkpoint scheduler.
|
| CompletedCheckpoint |
A successful checkpoint describes a checkpoint after all required tasks acknowledged it (with their state)
and that is considered completed.
|
| PendingCheckpoint |
A pending checkpoint is a checkpoint that has been started, but has not been
acknowledged by all tasks that need to acknowledge it.
|
| SavepointCoordinator |
The savepoint coordinator is a slightly modified variant of the regular
checkpoint coordinator.
|
| SavepointCoordinatorDeActivator |
This actor listens to changes in the JobStatus and deactivates the
savepoint scheduler and discards all pending checkpoints.
|
| SavepointStore |
Simple wrapper around the state store for savepoints.
|
| SavepointStoreFactory |
Factory for savepoint
StateStore instances. |
| StandaloneCheckpointIDCounter |
CheckpointIDCounter instances for JobManagers running in RecoveryMode.STANDALONE. |
| StandaloneCheckpointRecoveryFactory |
CheckpointCoordinator components in RecoveryMode.STANDALONE. |
| StateForTask |
Simple bean to describe the state belonging to a parallel operator.
|
| ZooKeeperCheckpointIDCounter |
CheckpointIDCounter instances for JobManagers running in RecoveryMode.ZOOKEEPER. |
| ZooKeeperCheckpointRecoveryFactory |
CheckpointCoordinator components in RecoveryMode.ZOOKEEPER. |
| ZooKeeperCompletedCheckpointStore |
CompletedCheckpointStore for JobManagers running in RecoveryMode.ZOOKEEPER. |
Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.