Skip to content

Commit 728d70a

Browse files
committed
Resolve comments
1 parent c6b6723 commit 728d70a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/running-on-kubernetes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ logs and remains in "completed" state in the Kubernetes API until it's eventuall
4646
Note that in the completed state, the driver pod does *not* use any computational or memory resources.
4747

4848
The driver and executor pod scheduling is handled by Kubernetes. Communication to the Kubernetes API is done via fabric8, and we are
49-
currently running <code>kubernetes-client</code> version <code>4.1.0</code>. Make sure that any infrastructure additions are weary of said version. It is possible to schedule the
49+
currently running <code>kubernetes-client</code> version <code>4.1.0</code>. Make sure that when you are making infrastructure additions that you are aware of said version. It is possible to schedule the
5050
driver and executor pods on a subset of available nodes through a [node selector](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector)
5151
using the configuration property for it. It will be possible to use more advanced
5252
scheduling hints like [node/pod affinities](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity) in a future release.

resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/KubernetesUtils.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ private[spark] object KubernetesUtils {
158158
}
159159

160160
def formatTime(time: String): String = {
161-
// TODO: Investigate form `time` comes in
161+
// TODO: Investigate form `time` comes in as there was a DataType
162+
// change from Time to String
162163
if (time != null) time else "N/A"
163164
}
164165
}

0 commit comments

Comments
 (0)