dongjoon-hyun commented on a change in pull request #23928: [SPARK-27023][K8S]
Make k8s client timeouts configurable
URL: https://github.com/apache/spark/pull/23928#discussion_r262677388
##########
File path:
resource-managers/kubernetes/core/src/main/scala/org/apache/spark/scheduler/cluster/k8s/KubernetesClusterManager.scala
##########
@@ -44,18 +44,21 @@ private[spark] class KubernetesClusterManager extends
ExternalClusterManager wit
scheduler: TaskScheduler): SchedulerBackend = {
val wasSparkSubmittedInClusterMode =
sc.conf.get(KUBERNETES_DRIVER_SUBMIT_CHECK)
val (authConfPrefix,
+ clientType,
apiServerUri,
defaultServiceAccountToken,
defaultServiceAccountCaCrt) = if (wasSparkSubmittedInClusterMode) {
require(sc.conf.get(KUBERNETES_DRIVER_POD_NAME).isDefined,
"If the application is deployed using spark-submit in cluster mode,
the driver pod name " +
"must be provided.")
(KUBERNETES_AUTH_DRIVER_MOUNTED_CONF_PREFIX,
+ SparkKubernetesClientFactory.ClientType.Driver,
KUBERNETES_MASTER_INTERNAL_URL,
Some(new File(Config.KUBERNETES_SERVICE_ACCOUNT_TOKEN_PATH)),
Some(new File(Config.KUBERNETES_SERVICE_ACCOUNT_CA_CRT_PATH)))
} else {
(KUBERNETES_AUTH_CLIENT_MODE_PREFIX,
+ SparkKubernetesClientFactory.ClientType.Driver,
Review comment:
ditto.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]