Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Add unit-testing for executorpodfactory #491

Merged
merged 18 commits into from
Oct 10, 2017
Merged
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,286 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.spark.scheduler.cluster.k8s

import scala.collection.JavaConverters._

import io.fabric8.kubernetes.api.model._
import io.fabric8.kubernetes.client.KubernetesClient
import io.fabric8.kubernetes.api.model.{Pod, Volume, VolumeBuilder, VolumeMount, VolumeMountBuilder}

import org.scalatest.BeforeAndAfter
import org.mockito.{AdditionalAnswers, ArgumentCaptor, Mock, MockitoAnnotations}
import org.mockito.Matchers.{any, eq => mockitoEq}
import org.mockito.Mockito.{doNothing, never, times, verify, when, mock}
import org.scalatest.mock.MockitoSugar._

import org.apache.commons.io.FilenameUtils

import org.apache.spark.{SparkConf, SparkContext, SparkFunSuite}
import org.apache.spark.network.netty.SparkTransportConf
import org.apache.spark.network.shuffle.kubernetes.KubernetesExternalShuffleClientImpl
import org.apache.spark.deploy.k8s.{constants, SparkPodInitContainerBootstrapImpl}
import org.apache.spark.deploy.k8s.config._
import org.apache.spark.deploy.k8s.submit.{MountSecretsBootstrapImpl, MountSmallFilesBootstrapImpl}

class ExecutorPodFactoryImplSuite extends SparkFunSuite with BeforeAndAfter {
private val driverPodName: String = "driver-pod"
private val driverPodUid: String = "driver-uid"
private val driverUrl: String = "driver-url"
private val executorPrefix: String = "base"
private val executorImage: String = "executor-image"
private val driverPod = new PodBuilder()
.withNewMetadata()
.withName(driverPodName)
.withUid(driverPodUid)
.endMetadata()
.withNewSpec()
.withNodeName("some-node")
.endSpec()
.withNewStatus()
.withHostIP("192.168.99.100")
.endStatus()
.build()
private var baseConf: SparkConf = _

private val nodeAffinityExecutorPodModifier = mock(classOf[NodeAffinityExecutorPodModifier])
when(nodeAffinityExecutorPodModifier.addNodeAffinityAnnotationIfUseful(
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Move this to the before block.

any(classOf[Pod]),
any(classOf[Map[String, Int]]))).thenAnswer(AdditionalAnswers.returnsFirstArg())

before {
SparkContext.clearActiveContext()
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't think we need to do this anymore.

MockitoAnnotations.initMocks(this)
baseConf = new SparkConf()
.set(KUBERNETES_DRIVER_POD_NAME, driverPodName)
.set(KUBERNETES_EXECUTOR_POD_NAME_PREFIX, executorPrefix)
.set(EXECUTOR_DOCKER_IMAGE, executorImage)
}
private var kubernetesClient: KubernetesClient = _

test("basic executor pod has reasonable defaults") {
val factory = new ExecutorPodFactoryImpl(
baseConf,
nodeAffinityExecutorPodModifier,
None,
None,
None,
None,
None)
val executor = factory.createExecutorPod(
"1", "dummy", "dummy", Seq[(String, String)](), driverPod, Map[String, Int]())

// The executor pod name and default labels.
assert(executor.getMetadata.getName === s"$executorPrefix-exec-1")
assert(executor.getMetadata.getLabels.size() === 3)

// There is exactly 1 container with no volume mounts and default memory limits.
// Default memory limit is 1024M + 384M (minimum overhead constant).
assert(executor.getSpec.getContainers.size() === 1)
assert(executor.getSpec.getContainers.get(0).getImage === executorImage)
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.isEmpty)
assert(executor.getSpec.getContainers.get(0).getResources.getLimits.size() === 1)
assert(executor.getSpec.getContainers.get(0).getResources
.getLimits.get("memory").getAmount === "1408Mi")

// The pod has no node selector, volumes.
assert(executor.getSpec.getNodeSelector.isEmpty)
assert(executor.getSpec.getVolumes.isEmpty)

checkEnv(executor, Set())
checkOwnerReferences(executor, driverPodUid)
}

test("executor pod hostnames get truncated to 63 characters") {
val conf = baseConf.clone()
conf.set(KUBERNETES_EXECUTOR_POD_NAME_PREFIX,
"loremipsumdolorsitametvimatelitrefficiendisuscipianturvixlegeresple")

val factory = new ExecutorPodFactoryImpl(
conf, nodeAffinityExecutorPodModifier, None, None, None, None, None)
val executor = factory.createExecutorPod(
"1", "dummy", "dummy", Seq[(String, String)](), driverPod, Map[String, Int]())

assert(executor.getSpec.getHostname.length === 63)
}

test("secrets get mounted") {
val conf = baseConf.clone()

val secretsBootstrap = new MountSecretsBootstrapImpl(Map("secret1" -> "/var/secret1"))
val factory = new ExecutorPodFactoryImpl(
conf,
nodeAffinityExecutorPodModifier,
Some(secretsBootstrap),
None,
None,
None,
None)
val executor = factory.createExecutorPod(
"1", "dummy", "dummy", Seq[(String, String)](), driverPod, Map[String, Int]())

assert(executor.getSpec.getContainers.size() === 1)
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.size() === 1)
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.get(0).getName === "secret1-volume")
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.get(0)
.getMountPath === "/var/secret1")

// check volume mounted.
assert(executor.getSpec.getVolumes.size() === 1)
assert(executor.getSpec.getVolumes.get(0).getSecret.getSecretName === "secret1")

checkOwnerReferences(executor, driverPodUid)
}

test("init-container bootstrap step adds an init container") {
val conf = baseConf.clone()

val initContainerBootstrap = new SparkPodInitContainerBootstrapImpl(
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't use the impl, use a mock.

"init-image",
"IfNotPresent",
"/some/path/",
"some/other/path",
10,
"config-map-name",
"config-map-key")

val factory = new ExecutorPodFactoryImpl(
conf,
nodeAffinityExecutorPodModifier,
None,
None,
Some(initContainerBootstrap),
None,
None)
val executor = factory.createExecutorPod(
"1", "dummy", "dummy", Seq[(String, String)](), driverPod, Map[String, Int]())

assert(executor.getMetadata.getAnnotations.size() === 1)
assert(executor.getMetadata.getAnnotations.containsKey(constants.INIT_CONTAINER_ANNOTATION))
checkOwnerReferences(executor, driverPodUid)
}

test("the shuffle-service adds a volume mount") {
val conf = baseConf.clone()
conf.set(KUBERNETES_SHUFFLE_LABELS, "label=value")
conf.set(KUBERNETES_SHUFFLE_NAMESPACE, "default")
conf.set(KUBERNETES_SHUFFLE_DIR, "/tmp")

val shuffleManager = mock(classOf[KubernetesExternalShuffleManager])
when(shuffleManager.getExecutorShuffleDirVolumesWithMounts).thenReturn({
val shuffleDirs = Seq("/tmp")
shuffleDirs.zipWithIndex.map { case (shuffleDir, shuffleDirIndex) =>
val volumeName = s"$shuffleDirIndex-${FilenameUtils.getBaseName(shuffleDir)}"
val volume = new VolumeBuilder()
.withName(volumeName)
.withNewHostPath(shuffleDir)
.build()
val volumeMount = new VolumeMountBuilder()
.withName(volumeName)
.withMountPath(shuffleDir)
.build()
(volume, volumeMount)
}
})

val factory = new ExecutorPodFactoryImpl(
conf,
nodeAffinityExecutorPodModifier,
None,
None,
None,
None,
Some(shuffleManager))
val executor = factory.createExecutorPod(
"1", "dummy", "dummy", Seq[(String, String)](), driverPod, Map[String, Int]())


assert(executor.getSpec.getContainers.size() === 1)
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.size() === 1)
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.get(0).getName === "0-tmp")
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.get(0)
.getMountPath === "/tmp")
checkOwnerReferences(executor, driverPodUid)
}

test("Small-files add a secret & secret volume mount to the container") {
val conf = baseConf.clone()
val smallFiles = new MountSmallFilesBootstrapImpl("secret1", "/var/secret1")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't use the impl, use a mock


val factory = new ExecutorPodFactoryImpl(
conf,
nodeAffinityExecutorPodModifier,
None,
Some(smallFiles),
None,
None,
None)
val executor = factory.createExecutorPod(
"1", "dummy", "dummy", Seq[(String, String)](), driverPod, Map[String, Int]())


assert(executor.getSpec.getContainers.size() === 1)
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.size() === 1)
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.get(0)
.getName === "submitted-files")
assert(executor.getSpec.getContainers.get(0).getVolumeMounts.get(0)
.getMountPath === "/var/secret1")

assert(executor.getSpec.getVolumes.size() === 1)
assert(executor.getSpec.getVolumes.get(0).getSecret.getSecretName === "secret1")

checkOwnerReferences(executor, driverPodUid)
checkEnv(executor, Set("SPARK_MOUNTED_FILES_FROM_SECRET_DIR"))
}

test("classpath and extra java options get translated into environment variables") {
val conf = baseConf.clone()
conf.set(org.apache.spark.internal.config.EXECUTOR_JAVA_OPTIONS, "foo=bar")
conf.set(org.apache.spark.internal.config.EXECUTOR_CLASS_PATH, "bar=baz")

val factory = new ExecutorPodFactoryImpl(
conf, nodeAffinityExecutorPodModifier, None, None, None, None, None)
val executor = factory.createExecutorPod(
"1", "dummy", "dummy", Seq[(String, String)]("qux" -> "quux"), driverPod, Map[String, Int]())

checkEnv(executor, Set("SPARK_JAVA_OPT_0", "SPARK_EXECUTOR_EXTRA_CLASSPATH", "qux"))
checkOwnerReferences(executor, driverPodUid)
}

// There is always exactly one controller reference, and it points to the driver pod.
private def checkOwnerReferences(executor: Pod, driverPodUid: String): Unit = {
assert(executor.getMetadata.getOwnerReferences.size() === 1)
assert(executor.getMetadata.getOwnerReferences.get(0).getUid === driverPodUid)
assert(executor.getMetadata.getOwnerReferences.get(0).getController === true)
}

// Check that the expected environment variables are present.
private def checkEnv(executor: Pod, additionalEnvVars: Set[String]): Unit = {
val defaultEnvs = Set(constants.ENV_EXECUTOR_ID,
constants.ENV_DRIVER_URL, constants.ENV_EXECUTOR_CORES,
constants.ENV_EXECUTOR_MEMORY, constants.ENV_APPLICATION_ID,
constants.ENV_MOUNTED_CLASSPATH, constants.ENV_EXECUTOR_POD_IP,
constants.ENV_EXECUTOR_PORT) ++ additionalEnvVars

assert(executor.getSpec.getContainers.size() === 1)
assert(executor.getSpec.getContainers.get(0).getEnv().size() === defaultEnvs.size)
val setEnvs = executor.getSpec.getContainers.get(0).getEnv.asScala.map {
x => x.getName
}.toSet
assert(defaultEnvs === setEnvs)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to check the values for these as well?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not obvious to me what the expected values for some of the env-vars ought to be. Possibly @foxish knows. I've been assuming the main logic being tested there is purely env propagation - to confirm what vars are being passed under what circumstances.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

}
}