You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by al...@apache.org on 2015/11/17 11:11:59 UTC

flink git commit: FLINK-3022: Broken link 'Working With State' in Fault Tolerance Section of Stream Programming Guide

Repository: flink
Updated Branches:
  refs/heads/master aba377945 -> 14c24e797


FLINK-3022: Broken link 'Working With State' in Fault Tolerance Section of Stream Programming Guide


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/14c24e79
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/14c24e79
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/14c24e79

Branch: refs/heads/master
Commit: 14c24e797ed9e8fcaab98fecbb7856e363175ea4
Parents: aba3779
Author: smarthi <sm...@apache.org>
Authored: Tue Nov 17 03:35:45 2015 -0500
Committer: smarthi <sm...@apache.org>
Committed: Tue Nov 17 03:35:45 2015 -0500

----------------------------------------------------------------------
 docs/apis/streaming_guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/14c24e79/docs/apis/streaming_guide.md
----------------------------------------------------------------------
diff --git a/docs/apis/streaming_guide.md b/docs/apis/streaming_guide.md
index 05b51fc..bc13c0e 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.