From 14c24e797ed9e8fcaab98fecbb7856e363175ea4 Mon Sep 17 00:00:00 2001 From: smarthi Date: Tue, 17 Nov 2015 03:35:45 -0500 Subject: [PATCH] FLINK-3022: Broken link 'Working With State' in Fault Tolerance Section of Stream Programming Guide --- docs/apis/streaming_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apis/streaming_guide.md b/docs/apis/streaming_guide.md index 05b51fcb926..bc13c0eef87 100644 --- a/docs/apis/streaming_guide.md +++ b/docs/apis/streaming_guide.md @@ -2884,7 +2884,7 @@ Execution Parameters Flink has a checkpointing mechanism that recovers streaming jobs after failues. The checkpointing mechanism requires a *persistent* or *durable* source that can be asked for prior records again (Apache Kafka is a good example of a durable source). -The checkpointing mechanism stores the progress in the source as well as the user-defined state (see [Working with State](#Stateful_computation)) +The checkpointing mechanism stores the progress in the source as well as the user-defined state (see [Working with State](#working_with_state)) consistently to provide *exactly once* processing guarantees. To enable checkpointing, call `enableCheckpointing(n)` on the `StreamExecutionEnvironment`, where *n* is the checkpoint interval in milliseconds. -- GitLab