[hotfix][docs] Update docs for simplified configuration of local recovery
Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/85eb104b Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/85eb104b Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/85eb104b Branch: refs/heads/master Commit: 85eb104b04a0ea55420754c017d44852edea1744 Parents: 0deaa3b Author: Stefan Richter <[email protected]> Authored: Thu May 17 10:00:50 2018 +0200 Committer: Stefan Richter <[email protected]> Committed: Thu May 17 10:03:03 2018 +0200 ---------------------------------------------------------------------- docs/ops/state/large_state_tuning.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/85eb104b/docs/ops/state/large_state_tuning.md ---------------------------------------------------------------------- diff --git a/docs/ops/state/large_state_tuning.md b/docs/ops/state/large_state_tuning.md index 6359938..6df551f 100644 --- a/docs/ops/state/large_state_tuning.md +++ b/docs/ops/state/large_state_tuning.md @@ -298,10 +298,7 @@ that the task-local state is an in-memory consisting of heap objects, and not st ### Configuring task-local recovery Task-local recovery is *deactivated by default* and can be activated through Flink's configuration with the key `state.backend.local-recovery` as specified -in `CheckpointingOptions.LOCAL_RECOVERY`. Users have currently two choices: - -- `DISABLED`: Local recovery is disabled (default). -- `ENABLE_FILE_BASED`: Local recovery is activated, based on writing a secondary copies of the task state on local disk. +in `CheckpointingOptions.LOCAL_RECOVERY`. The value for this setting can either be *true* to enable or *false* (default) to disable local recovery. ### Details on task-local recovery for different state backends
