Repository: spark
Updated Branches:
  refs/heads/master 1007cae20 -> dcb9a97f3


[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>


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

Branch: refs/heads/master
Commit: dcb9a97f3e16d4645529ac619c3197fcba1c9806
Parents: 1007cae
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:37 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/dcb9a97f/docs/running-on-kubernetes.md
----------------------------------------------------------------------
diff --git a/docs/running-on-kubernetes.md b/docs/running-on-kubernetes.md
index c7aea27..b4088d7 100644
--- a/docs/running-on-kubernetes.md
+++ b/docs/running-on-kubernetes.md
@@ -680,15 +680,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>
@@ -697,7 +697,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