Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/ops/state/state_backends.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,17 @@ env.setStateBackend(new FsStateBackend("hdfs://namenode:40010/flink/checkpoints"
</div>
</div>

Stateback provides api implementations of FsStateBackend and MemoryStateBackend by default.
If you want to set Per-job state backend to RocksDBStateBackend, you need to add a dependency in your Flink project.

{% highlight xml %}
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-statebackend-rocksdb{{ site.scala_version_suffix }}</artifactId>
<version>{{site.version }}</version>
</dependency>
{% endhighlight %}


### Setting Default State Backend

Expand Down