Skip to content

Commit

Permalink
[hotfix][docs] Fix a bunch of broken references
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Feb 22, 2024
1 parent e622205 commit 6a938c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/content.zh/docs/deployment/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ When deploying Flink, there are often multiple options available for each buildi
</td>
<td>
<ul id="jmimpls">
<li><a href="{{< ref "docs/deployment/resource-providers/standalone/" >}}">Standalone</a> (this is the barebone mode that requires just JVMs to be launched. Deployment with <a href="{{< ref "docs/deployment/resource-providers/standalone/docker" >}}">Docker, Docker Swarm / Compose</a>, <a href="{{< ref "docs/deployment/resource-providers/standalone/kubernetes" >}}">non-native Kubernetes</a> and other models is possible through manual setup in this mode)
<li><a href="{{< ref "docs/deployment/resource-providers/standalone" >}}">Standalone</a> (this is the barebone mode that requires just JVMs to be launched. Deployment with <a href="{{< ref "docs/deployment/resource-providers/standalone/docker" >}}">Docker, Docker Swarm / Compose</a>, <a href="{{< ref "docs/deployment/resource-providers/standalone/kubernetes" >}}">non-native Kubernetes</a> and other models is possible through manual setup in this mode)
</li>
<li><a href="{{< ref "docs/deployment/resource-providers/native_kubernetes" >}}">Kubernetes</a></li>
<li><a href="{{< ref "docs/deployment/resource-providers/yarn" >}}">YARN</a></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ cd flink-*

Flink 目录必须放在所有 worker 节点的相同目录下。你可以使用共享的 NFS 目录,或将 Flink 目录复制到每个 worker 节点上。

请参考 [配置参数页面]({{< ref "docs/deployment/config.zh" >}}) 获取更多细节以及额外的配置项。
请参考 [配置参数页面]({{< ref "docs/deployment/config" >}}) 获取更多细节以及额外的配置项。

特别地,

* 每个 JobManager 的可用内存值(`jobmanager.memory.process.size`),
* 每个 TaskManager 的可用内存值 (`taskmanager.memory.process.size`,并检查 [内存调优指南]({{< ref "docs/deployment/memory/mem_tuning.zh" >}}#configure-memory-for-standalone-deployment)),
* 每个 TaskManager 的可用内存值 (`taskmanager.memory.process.size`,并检查 [内存调优指南]({{< ref "docs/deployment/memory/mem_tuning" >}}#configure-memory-for-standalone-deployment)),
* 每台机器的可用 CPU 数(`taskmanager.numberOfTaskSlots`),
* 集群中所有 CPU 数(`parallelism.default`)和
* 临时目录(`io.tmp.dirs`
Expand Down Expand Up @@ -172,7 +172,7 @@ bin/taskmanager.sh start|start-foreground|stop|stop-all
## High-Availability with Standalone
In order to enable HA for a standalone cluster, you have to use the [ZooKeeper HA services]({{< ref "docs/deployment/ha/zookeeper_ha.zh" >}}).
In order to enable HA for a standalone cluster, you have to use the [ZooKeeper HA services]({{< ref "docs/deployment/ha/zookeeper_ha" >}}).
Additionally, you have to configure your cluster to start multiple JobManagers.
Expand All @@ -188,7 +188,7 @@ In order to start an HA-cluster configure the *masters* file in `conf/masters`:
jobManagerAddressX:webUIPortX
</pre>
By default, the job manager will pick a *random port* for inter process communication. You can change this via the [high-availability.jobmanager.port]({{< ref "docs/deployment/config.zh" >}}#high-availability-jobmanager-port) key. This key accepts single ports (e.g. `50010`), ranges (`50000-50025`), or a combination of both (`50010,50011,50020-50025,50050-50075`).
By default, the job manager will pick a *random port* for inter process communication. You can change this via the [high-availability.jobmanager.port]({{< ref "docs/deployment/config" >}}#high-availability-jobmanager-port) key. This key accepts single ports (e.g. `50010`), ranges (`50000-50025`), or a combination of both (`50010,50011,50020-50025,50050-50075`).
### Example: Standalone Cluster with 2 JobManagers
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/deployment/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ When deploying Flink, there are often multiple options available for each buildi
</td>
<td>
<ul id="jmimpls">
<li><a href="{{< ref "docs/deployment/resource-providers/standalone/" >}}">Standalone</a> (this is the barebone mode that requires just JVMs to be launched. Deployment with <a href="{{< ref "docs/deployment/resource-providers/standalone/docker" >}}">Docker, Docker Swarm / Compose</a>, <a href="{{< ref "docs/deployment/resource-providers/standalone/kubernetes" >}}">non-native Kubernetes</a> and other models is possible through manual setup in this mode)
<li><a href="{{< ref "docs/deployment/resource-providers/standalone" >}}">Standalone</a> (this is the barebone mode that requires just JVMs to be launched. Deployment with <a href="{{< ref "docs/deployment/resource-providers/standalone/docker" >}}">Docker, Docker Swarm / Compose</a>, <a href="{{< ref "docs/deployment/resource-providers/standalone/kubernetes" >}}">non-native Kubernetes</a> and other models is possible through manual setup in this mode)
</li>
<li><a href="{{< ref "docs/deployment/resource-providers/native_kubernetes" >}}">Kubernetes</a></li>
<li><a href="{{< ref "docs/deployment/resource-providers/yarn" >}}">YARN</a></li>
Expand Down

0 comments on commit 6a938c9

Please sign in to comment.