asfgit closed pull request #7401: [hotfix][doc] Fix an error in state_backends
URL: https://github.com/apache/flink/pull/7401
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/docs/ops/state/state_backends.md b/docs/ops/state/state_backends.md
index e4fe5bda063..70663f696b2 100644
--- a/docs/ops/state/state_backends.md
+++ b/docs/ops/state/state_backends.md
@@ -152,7 +152,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), *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),
+name of the class that implements the state backend factory
[StateBackendFactory](https://github.com/apache/flink/blob/master/flink-runtime/src/main/java/org/apache/flink/runtime/state/StateBackendFactory.java),
such as `org.apache.flink.contrib.streaming.state.RocksDBStateBackendFactory`
for RocksDBStateBackend.
The `state.checkpoints.dir` option defines the directory to which all backends
write checkpoint data and meta data files.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services