Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/5006#discussion_r152406271 --- Diff: docs/dev/stream/state/queryable_state.md --- @@ -162,14 +161,19 @@ So far, you have set up your cluster to run with queryable state and you have de queryable. Now it is time to see how to query this state. For this you can use the `QueryableStateClient` helper class. This is available in the `flink-queryable-state-client` -jar which you have to explicitly include as a dependency in the `pom.xml` of your project, as shown below: +jar which you have to explicitly include as a dependency in the `pom.xml` of your project along with `flink-core`, as shown below: <div data-lang="java" markdown="1"> {% highlight xml %} <dependency> <groupId>org.apache.flink</groupId> - <artifactId>flink-queryable-state-client-java_{{ site.scala_version_suffix }}</artifactId> - <version>{{site.version }}</version> + <artifactId>flink-core</artifactId> + <version>{{ site.version }}</version> +</dependency> +<dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-queryable-state-client-java{{ site.scala_version_suffix }}</artifactId> --- End diff -- no, the underscore is included in `site.scala_version_suffix`.
---