- tags: Flink State Snapshots,Fault Tolerance via State Snapshots,Flink Checkpoint
- source: https://nightlies.apache.org/flink/flink-docs-release-1.14/docs/learn-flink/fault%5Ftolerance/#checkpoint-storage
Flink periodically takes persistent snapshots of all the state in every operator and copies these snapshots somewhere more durable, such as a distributed file system. In the event of the failure, Flink can restore the complete state of your application and resume processing as though nothing had gone wrong.
Two implementations:
- A distributed file system.
- JobManager’s heap.