tweise commented on a change in pull request #13116:
URL: https://github.com/apache/beam/pull/13116#discussion_r512415517
##########
File path: runners/flink/flink_runner.gradle
##########
@@ -148,6 +148,8 @@ dependencies {
compile "org.apache.flink:flink-java:$flink_version"
compile "org.apache.flink:flink-runtime_2.11:$flink_version"
compile "org.apache.flink:flink-streaming-java_2.11:$flink_version"
+ // RocksDB state backend
+ compile "org.apache.flink:flink-statebackend-rocksdb_2.11:$flink_version"
Review comment:
The dependency is part of the flink distribution:
```
$ tar -tf flink-dist_2.12-1.11.2.jar | grep RocksDBStateBackend
org/apache/flink/contrib/streaming/state/RocksDBStateBackend.class
org/apache/flink/contrib/streaming/state/RocksDBStateBackendFactory.class
org/apache/flink/contrib/streaming/state/RocksDBStateBackend$PriorityQueueStateType.class
```
If it wasn't, you could not configure the default state backend:
https://ci.apache.org/projects/flink/flink-docs-stable/ops/state/state_backends.html#setting-default-state-backend
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]