Skip to content

Commit

Permalink
[FLINK-13637][docs] Fix problems of anchors in document(building.md, …
Browse files Browse the repository at this point in the history
…common.md, queryable_state.md)

This closes apache#9384
  • Loading branch information
hequn8128 committed Aug 9, 2019
1 parent 7e13f5b commit 56c6b48
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/dev/stream/state/queryable_state.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ For more on this, you can check how to [set up a Flink program]({{ site.baseurl
The `QueryableStateClient` will submit your query to the internal proxy, which will then process your query and return
the final result. The only requirement to initialize the client is to provide a valid `TaskManager` hostname (remember
that there is a queryable state proxy running on each task manager) and the port where the proxy listens. More on how
to configure the proxy and state server port(s) in the [Configuration Section](#Configuration).
to configure the proxy and state server port(s) in the [Configuration Section](#configuration).

{% highlight java %}
QueryableStateClient client = new QueryableStateClient(tmHostname, proxyPort);
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/stream/state/queryable_state.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ For more on this, you can check how to [set up a Flink program]({{ site.baseurl
The `QueryableStateClient` will submit your query to the internal proxy, which will then process your query and return
the final result. The only requirement to initialize the client is to provide a valid `TaskManager` hostname (remember
that there is a queryable state proxy running on each task manager) and the port where the proxy listens. More on how
to configure the proxy and state server port(s) in the [Configuration Section](#Configuration).
to configure the proxy and state server port(s) in the [Configuration Section](#configuration).

{% highlight java %}
QueryableStateClient client = new QueryableStateClient(tmHostname, proxyPort);
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/table/common.md
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ A Table API or SQL query is translated when:

* a `Table` is emitted to a `TableSink`, i.e., when `Table.insertInto()` is called.
* a SQL update query is specified, i.e., when `TableEnvironment.sqlUpdate()` is called.
* a `Table` is converted into a `DataStream` or `DataSet` (see [Integration with DataStream and DataSet API](#integration-with-dataStream-and-dataSet-api)).
* a `Table` is converted into a `DataStream` or `DataSet` (see [Integration with DataStream and DataSet API](#integration-with-datastream-and-dataset-api)).

Once translated, a Table API or SQL query is handled like a regular DataStream or DataSet program and is executed when `StreamExecutionEnvironment.execute()` or `ExecutionEnvironment.execute()` is called.

Expand Down
2 changes: 1 addition & 1 deletion docs/dev/table/common.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ A Table API or SQL query is translated when:

* a `Table` is emitted to a `TableSink`, i.e., when `Table.insertInto()` is called.
* a SQL update query is specified, i.e., when `TableEnvironment.sqlUpdate()` is called.
* a `Table` is converted into a `DataStream` or `DataSet` (see [Integration with DataStream and DataSet API](#integration-with-dataStream-and-dataSet-api)).
* a `Table` is converted into a `DataStream` or `DataSet` (see [Integration with DataStream and DataSet API](#integration-with-datastream-and-dataset-api)).

Once translated, a Table API or SQL query is handled like a regular DataStream or DataSet program and is executed when `StreamExecutionEnvironment.execute()` or `ExecutionEnvironment.execute()` is called.

Expand Down
2 changes: 1 addition & 1 deletion docs/flinkDev/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ mvn clean install -DskipTests -Dfast

## Build PyFlink

If you want to build a PyFlink package that can be used for pip installation, you need to build Flink jars first, as described in [Build Flink](##Build Flink).
If you want to build a PyFlink package that can be used for pip installation, you need to build Flink jars first, as described in [Build Flink](#build-flink).
Then go to the root directory of flink source code and run this command to build the sdist package and wheel package:

{% highlight bash %}
Expand Down
2 changes: 1 addition & 1 deletion docs/flinkDev/building.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ mvn clean install -DskipTests -Dfast

## 构建PyFlink

如果您想构建一个可用于pip安装的PyFlink包,您需要先构建Flink的Jar包,如[构建Flink](##Build Flink)中所述。
如果您想构建一个可用于pip安装的PyFlink包,您需要先构建Flink的Jar包,如[构建Flink](#build-flink)中所述。
之后,进入Flink源码根目录,并执行以下命令,构建PyFlink的源码发布包和wheel包:

{% highlight bash %}
Expand Down

0 comments on commit 56c6b48

Please sign in to comment.