Skip to content

Commit dcb9a97

Browse files
viiryaHyukjinKwon
authored andcommitted
[SPARK-25262][DOC][FOLLOWUP] Fix link tags in html table
## What changes were proposed in this pull request? Markdown links are not working inside html table. We should use html link tag. ## How was this patch tested? Verified in IntelliJ IDEA's markdown editor and online markdown editor. Closes apache#22588 from viirya/SPARK-25262-followup. Authored-by: Liang-Chi Hsieh <[email protected]> Signed-off-by: hyukjinkwon <[email protected]>
1 parent 1007cae commit dcb9a97

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/running-on-kubernetes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -680,15 +680,15 @@ specific to Spark on Kubernetes.
680680
<td><code>spark.kubernetes.driver.limit.cores</code></td>
681681
<td>(none)</td>
682682
<td>
683-
Specify a hard cpu [limit](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the driver pod.
683+
Specify a hard cpu <a href="https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container">limit</a> for the driver pod.
684684
</td>
685685
</tr>
686686
<tr>
687687
<td><code>spark.kubernetes.executor.request.cores</code></td>
688688
<td>(none)</td>
689689
<td>
690-
Specify the cpu request for each executor pod. Values conform to the Kubernetes [convention](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#meaning-of-cpu).
691-
Example values include 0.1, 500m, 1.5, 5, etc., with the definition of cpu units documented in [CPU units](https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/#cpu-units).
690+
Specify the cpu request for each executor pod. Values conform to the Kubernetes <a href="https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#meaning-of-cpu">convention</a>.
691+
Example values include 0.1, 500m, 1.5, 5, etc., with the definition of cpu units documented in <a href="https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/#cpu-units">CPU units</a>.
692692
This is distinct from <code>spark.executor.cores</code>: it is only used and takes precedence over <code>spark.executor.cores</code> for specifying the executor pod cpu request if set. Task
693693
parallelism, e.g., number of tasks an executor can run concurrently is not affected by this.
694694
</td>
@@ -697,7 +697,7 @@ specific to Spark on Kubernetes.
697697
<td><code>spark.kubernetes.executor.limit.cores</code></td>
698698
<td>(none)</td>
699699
<td>
700-
Specify a hard cpu [limit](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for each executor pod launched for the Spark Application.
700+
Specify a hard cpu <a href="https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container">limit</a> for each executor pod launched for the Spark Application.
701701
</td>
702702
</tr>
703703
<tr>

0 commit comments

Comments
 (0)