davidradl commented on code in PR #26107:
URL: https://github.com/apache/flink/pull/26107#discussion_r1944927681
##########
docs/content/docs/ops/state/state_backends.md:
##########
@@ -150,18 +188,29 @@ If you want to use the `EmbeddedRocksDBStateBackend` in
your IDE or configure it
</dependency>
```
+Same for `ForStStateBackend`:
+```xml
+<dependency>
+ <groupId>org.apache.flink</groupId>
+ <artifactId>flink-statebackend-forst</artifactId>
+ <version>{{< version >}}</version>
+ <scope>provided</scope>
+</dependency>
+```
+
{{< hint info >}}
-Since RocksDB is part of the default Flink distribution, you do not need this
dependency if you are not using any RocksDB code in your job and configure the
state backend via `state.backend.type` and further [checkpointing]({{< ref
"docs/deployment/config" >}}#checkpointing) and [RocksDB-specific]({{< ref
"docs/deployment/config" >}}#rocksdb-state-backend) parameters in your [Flink
configuration file]({{< ref "docs/deployment/config#flink-configuration-file"
>}}).
+Since RocksDB and ForSt is part of the default Flink distribution, you do not
need this dependency if you are not using any RocksDB code in your job and
configure the state backend via `state.backend.type` and further
[checkpointing]({{< ref "docs/deployment/config" >}}#checkpointing) and
[RocksDB-specific]({{< ref "docs/deployment/config" >}}#rocksdb-state-backend)
or [ForSt-specific]({{< ref "docs/deployment/config" >}}#forst-state-backend)
parameters in your [Flink configuration file]({{< ref
"docs/deployment/config#flink-configuration-file" >}}).
{{< /hint >}}
### Setting Default State Backend
A default state backend can be configured in the [Flink configuration
file]({{< ref "docs/deployment/config#flink-configuration-file" >}}), using the
configuration key `state.backend.type`.
-Possible values for the config entry are *hashmap* (HashMapStateBackend),
*rocksdb* (EmbeddedRocksDBStateBackend), or the fully qualified class
+Possible values for the config entry are *hashmap* (HashMapStateBackend),
*rocksdb* (EmbeddedRocksDBStateBackend), *forst*(ForStStateBackend) or the
fully qualified class
Review Comment:
nit: *rocksdb* has a space after it but *forst* does not.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]