You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2017/06/22 09:41:07 UTC

[2/5] flink git commit: [FLINK-6806] [docs] Add RocksDB to listed state backends in doc

[FLINK-6806] [docs] Add RocksDB to listed state backends in doc

This closes #4045.


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

Branch: refs/heads/master
Commit: 2324a8e1d2082452bfdb92053f80eb63ce04f3a1
Parents: 20838ef
Author: Bowen Li <bo...@gmail.com>
Authored: Thu Jun 1 15:40:30 2017 -0700
Committer: Tzu-Li (Gordon) Tai <tz...@apache.org>
Committed: Thu Jun 22 17:06:43 2017 +0800

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


http://git-wip-us.apache.org/repos/asf/flink/blob/2324a8e1/docs/ops/state_backends.md
----------------------------------------------------------------------
diff --git a/docs/ops/state_backends.md b/docs/ops/state_backends.md
index 781b2c5..85a34a9 100644
--- a/docs/ops/state_backends.md
+++ b/docs/ops/state_backends.md
@@ -151,7 +151,7 @@ env.setStateBackend(new FsStateBackend("hdfs://namenode:40010/flink/checkpoints"
 
 A default state backend can be configured in the `flink-conf.yaml`, using the configuration key `state.backend`.
 
-Possible values for the config entry are *jobmanager* (MemoryStateBackend), *filesystem* (FsStateBackend), or the fully qualified class
+Possible values for the config entry are *jobmanager* (MemoryStateBackend), *filesystem* (FsStateBackend), *rocksdb* (RocksDBStateBackend), or the fully qualified class
 name of the class that implements the state backend factory [FsStateBackendFactory](https://github.com/apache/flink/blob/master/flink-runtime/src/main/java/org/apache/flink/runtime/state/filesystem/FsStateBackendFactory.java),
 such as `org.apache.flink.contrib.streaming.state.RocksDBStateBackendFactory` for RocksDBStateBackend.