Repository: spark
Updated Branches:
  refs/heads/branch-2.4 ec2c17abf -> a14306b1d


[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 #22588 from viirya/SPARK-25262-followup.

Authored-by: Liang-Chi Hsieh <vii...@gmail.com>
Signed-off-by: hyukjinkwon <gurwls...@apache.org>
(cherry picked from commit dcb9a97f3e16d4645529ac619c3197fcba1c9806)
Signed-off-by: hyukjinkwon <gurwls...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a14306b1
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a14306b1
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a14306b1

Branch: refs/heads/branch-2.4
Commit: a14306b1d5a135cff0441c1c953032d0c6a51c47
Parents: ec2c17a
Author: Liang-Chi Hsieh <vii...@gmail.com>
Authored: Sat Sep 29 18:18:37 2018 +0800
Committer: hyukjinkwon <gurwls...@apache.org>
Committed: Sat Sep 29 18:18:52 2018 +0800

----------------------------------------------------------------------
 docs/running-on-kubernetes.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/a14306b1/docs/running-on-kubernetes.md
----------------------------------------------------------------------
diff --git a/docs/running-on-kubernetes.md b/docs/running-on-kubernetes.md
index fc7c9a5..f19aa41 100644
--- a/docs/running-on-kubernetes.md
+++ b/docs/running-on-kubernetes.md
@@ -667,15 +667,15 @@ specific to Spark on Kubernetes.
   <td><code>spark.kubernetes.driver.limit.cores</code></td>
   <td>(none)</td>
   <td>
-    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.
+    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.
   </td>
 </tr>
 <tr>
   <td><code>spark.kubernetes.executor.request.cores</code></td>
   <td>(none)</td>
   <td>
-    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).
 
-    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).
   
+    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>.
+    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>.
     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 
     parallelism, e.g., number of tasks an executor can run concurrently is not 
affected by this.
   </td>
@@ -684,7 +684,7 @@ specific to Spark on Kubernetes.
   <td><code>spark.kubernetes.executor.limit.cores</code></td>
   <td>(none)</td>
   <td>
-    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.
+    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.
   </td>
 </tr>
 <tr>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to