From e20ac587de96e6602b564077663500a42d6f4fec Mon Sep 17 00:00:00 2001 From: Robert Metzger Date: Sat, 13 Jan 2018 12:06:58 +0100 Subject: [PATCH] [hotfix][docs] Mention maven dependency for RocksDB state backend --- docs/ops/state/state_backends.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/ops/state/state_backends.md b/docs/ops/state/state_backends.md index 00e3c4fa5a139..76e82a75d230e 100644 --- a/docs/ops/state/state_backends.md +++ b/docs/ops/state/state_backends.md @@ -94,6 +94,17 @@ The FsStateBackend is encouraged for: ### The RocksDBStateBackend +
+ Note: The RocksDBStateBackend is not part of the default Flink distribution. To use the state backend, you need to add the following Maven dependency to your project: + {% highlight xml %} + + org.apache.flink + flink-statebackend-rocksdb{{ site.scala_version_suffix }} + {{site.version}} + + {% endhighlight %} +
+ The *RocksDBStateBackend* is configured with a file system URL (type, address, path), such as "hdfs://namenode:40010/flink/checkpoints" or "file:///data/flink/checkpoints". The RocksDBStateBackend holds in-flight data in a [RocksDB](http://rocksdb.org) database