Github user kayousterhout commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14079#discussion_r86648282
  
    --- Diff: 
core/src/test/scala/org/apache/spark/scheduler/BlacklistTrackerSuite.scala ---
    @@ -17,10 +17,299 @@
     
     package org.apache.spark.scheduler
     
    -import org.apache.spark.{SparkConf, SparkFunSuite}
    +import org.mockito.Mockito.when
    +import org.scalatest.BeforeAndAfterEach
    +import org.scalatest.mock.MockitoSugar
    +
    +import org.apache.spark._
     import org.apache.spark.internal.config
    +import org.apache.spark.util.ManualClock
    +
    +class BlacklistTrackerSuite extends SparkFunSuite with BeforeAndAfterEach 
with MockitoSugar
    +    with LocalSparkContext {
    +
    +  private val clock = new ManualClock(0)
    +
    +  private var blacklist: BlacklistTracker = _
    +  private var scheduler: TaskSchedulerImpl = _
    +  private var conf: SparkConf = _
    +
    +  override def afterEach(): Unit = {
    +    if (blacklist != null) {
    +      blacklist = null
    +    }
    +    if (scheduler != null) {
    +      scheduler.stop()
    +      scheduler = null
    +    }
    +    super.afterEach()
    +  }
    +
    +  val allExecutorAndHostIds = (('A' to 'Z').map("host" + _) ++ (1 to 
100).map{_.toString}).toSet
    +
    +  /**
    +   * Its easier to write our tests as if we could directly look at the 
sets of nodes & executors in
    +   * the blacklist.  However the api doesn't expose a set (for 
thread-safety), so this is a simple
    +   * way to test something similar, since we know the universe of values 
that might appear in these
    +   * sets.
    +   */
    +  def assertEquivalentToSet(f: String => Boolean, expected: Set[String]): 
Unit = {
    +    allExecutorAndHostIds.foreach { opt =>
    +      val actual = f(opt)
    +      val exp = expected.contains(opt)
    +      assert(actual === exp, raw"""for string "$opt" """)
    +    }
    +  }
    +
    +  def mockTaskSchedWithConf(conf: SparkConf): TaskSchedulerImpl = {
    +    sc = new SparkContext(conf)
    +    val scheduler = mock[TaskSchedulerImpl]
    +    when(scheduler.sc).thenReturn(sc)
    +    
when(scheduler.mapOutputTracker).thenReturn(SparkEnv.get.mapOutputTracker)
    +    scheduler
    +  }
     
    -class BlacklistTrackerSuite extends SparkFunSuite {
    +  def createTaskSetBlacklist(stageId: Int = 0): TaskSetBlacklist = {
    +    new TaskSetBlacklist(conf, stageId, clock)
    +  }
    +
    +  def configureBlacklistAndScheduler(confs: (String, String)*): Unit = {
    +    conf = new SparkConf().setAppName("test").setMaster("local")
    +      .set(config.BLACKLIST_ENABLED.key, "true")
    +    confs.foreach { case (k, v) => conf.set(k, v) }
    +    scheduler = mockTaskSchedWithConf(conf)
    +
    +    clock.setTime(0)
    +    blacklist = new BlacklistTracker(conf, clock)
    +  }
    +
    +  test("executors can be blacklisted with only a few failures per stage") {
    +    configureBlacklistAndScheduler()
    +    // for 4 different stages, executor 1 fails a task, then executor 2 
succeeds the task,
    +    // and then the task set is done.  Not enough failures to blacklist 
the executor *within*
    +    // any particular taskset, but we still blacklist the executor overall 
eventually.
    +    // Also, we intentionally have a mix of task successes and failures -- 
there are even some
    +    // successes after the executor is blacklisted.  The idea here is 
those tasks get scheduled
    +    // before the executor is blacklisted.  We might get successes after 
blacklisting (because the
    +    // executor might be flaky but not totally broken).  But successes do 
not unblacklist the
    +    // executor.
    +    val failuresTillBlacklisted = conf.get(config.MAX_FAILURES_PER_EXEC)
    +    var failuresSoFar = 0
    +    (0 until failuresTillBlacklisted * 10).foreach { stage =>
    +      val taskSetBlacklist = createTaskSetBlacklist(stage)
    +      if (stage % 2 == 0) {
    +        // fail every other task
    +        taskSetBlacklist.updateBlacklistForFailedTask("hostA", exec = "1", 
index = 0)
    +        failuresSoFar += 1
    +      }
    +      blacklist.updateBlacklistForSuccessfulTaskSet(stage, 0, 
taskSetBlacklist.execToFailures)
    +      assert(failuresSoFar == stage / 2 + 1)
    +      if (failuresSoFar < failuresTillBlacklisted) {
    +        assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set())
    +      } else {
    +        assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set("1"))
    +      }
    +    }
    +  }
    +
    +  // if an executor has many task failures, but the task set ends up 
failing, don't count it
    +  // against the executor
    +  test("executors aren't blacklisted if task sets fail") {
    +    configureBlacklistAndScheduler()
    +    // for 4 different stages, executor 1 fails a task, and then the 
taskSet fails.
    +    (0 until 4).foreach { stage =>
    +      val taskSetBlacklist = createTaskSetBlacklist(stage)
    +      taskSetBlacklist.updateBlacklistForFailedTask("hostA", exec = "1", 
index = 0)
    +    }
    +    assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set())
    +  }
    +
    +  Seq(true, false).foreach { succeedTaskSet =>
    +    test(s"stage blacklist updates correctly on stage completion 
($succeedTaskSet)") {
    +      // within one taskset, an executor fails a few times, so its 
blacklisted for the taskset.
    +      // but if the taskset fails, we don't blacklist the executor after 
the stage.
    +      configureBlacklistAndScheduler()
    +      val stageId = 1 + (if (succeedTaskSet) 1 else 0)
    +      val taskSetBlacklist = createTaskSetBlacklist(stageId)
    +      (0 until 4).foreach { index =>
    +        taskSetBlacklist.updateBlacklistForFailedTask("hostA", exec = "1", 
index = index)
    +      }
    +      assert(taskSetBlacklist.isExecutorBlacklistedForTaskSet("1"))
    +      assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set())
    +      if (succeedTaskSet) {
    +        // the task set succeeded elsewhere, so we count those failures 
against our executor,
    +        // and blacklist it across stages
    +        blacklist.updateBlacklistForSuccessfulTaskSet(stageId, 0, 
taskSetBlacklist.execToFailures)
    +        assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set("1"))
    +      } else {
    +        // the task set failed, so we don't count these failures against 
the executor for other
    +        // stages
    +        assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set())
    +      }
    +    }
    +  }
    +
    +  test("blacklisted executors and nodes get recovered with time") {
    +    configureBlacklistAndScheduler()
    +    val taskSetBlacklist0 = createTaskSetBlacklist(stageId = 0)
    +    (0 until 4).foreach { partition =>
    +      taskSetBlacklist0.updateBlacklistForFailedTask("hostA", exec = "1", 
index = partition)
    +    }
    +    blacklist.updateBlacklistForSuccessfulTaskSet(0, 0, 
taskSetBlacklist0.execToFailures)
    +    assert(blacklist.nodeBlacklist() === Set())
    +    assertEquivalentToSet(blacklist.isNodeBlacklisted(_), Set())
    +    assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set("1"))
    +
    +    val taskSetBlacklist1 = createTaskSetBlacklist(stageId = 1)
    +    (0 until 4).foreach { partition =>
    +      taskSetBlacklist1.updateBlacklistForFailedTask("hostA", exec = "2", 
index = partition)
    +    }
    +    blacklist.updateBlacklistForSuccessfulTaskSet(0, 0, 
taskSetBlacklist1.execToFailures)
    +    assert(blacklist.nodeBlacklist() === Set("hostA"))
    +    assertEquivalentToSet(blacklist.isNodeBlacklisted(_), Set("hostA"))
    +    assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set("1", 
"2"))
    +
    +    clock.advance(blacklist.BLACKLIST_TIMEOUT_MILLIS + 1)
    +    blacklist.applyBlacklistTimeout()
    +    assert(blacklist.nodeBlacklist() === Set())
    +    assertEquivalentToSet(blacklist.isNodeBlacklisted(_), Set())
    +    assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set())
    +
    +    // fail one more task, but executor isn't put back into blacklist 
since count reset to 0
    +    val taskSetBlacklist2 = createTaskSetBlacklist(stageId = 2)
    +    taskSetBlacklist2.updateBlacklistForFailedTask("hostA", exec = "1", 
index = 0)
    +    blacklist.updateBlacklistForSuccessfulTaskSet(2, 0, 
taskSetBlacklist2.execToFailures)
    +    assert(blacklist.nodeBlacklist() === Set())
    +    assertEquivalentToSet(blacklist.isNodeBlacklisted(_), Set())
    +    assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set())
    +  }
    +
    +  test("blacklist can handle lost executors") {
    +    // The blacklist should still work if an executor is killed 
completely.  We should still
    +    // be able to blacklist the entire node.
    +    configureBlacklistAndScheduler()
    +    val taskSetBlacklist0 = createTaskSetBlacklist(stageId = 0)
    +    // Lets say that executor 1 dies completely.  We get a task failure 
for the last task, but
    +    // the taskset then finishes successfully (elsewhere).
    +    (0 until 4).foreach { partition =>
    +      taskSetBlacklist0.updateBlacklistForFailedTask("hostA", exec = "1", 
index = partition)
    +    }
    +    blacklist.handleRemovedExecutor("1")
    +    blacklist.updateBlacklistForSuccessfulTaskSet(0, 0, 
taskSetBlacklist0.execToFailures)
    +    assert(blacklist.isExecutorBlacklisted("1"))
    +    clock.advance(blacklist.BLACKLIST_TIMEOUT_MILLIS / 2)
    +
    +    // Now another executor gets spun up on that host, but it also dies.
    +    val taskSetBlacklist1 = createTaskSetBlacklist(stageId = 1)
    +    (0 until 4).foreach { partition =>
    +      taskSetBlacklist1.updateBlacklistForFailedTask("hostA", exec = "2", 
index = partition)
    +    }
    +    blacklist.handleRemovedExecutor("2")
    +    blacklist.updateBlacklistForSuccessfulTaskSet(1, 0, 
taskSetBlacklist1.execToFailures)
    +    // We've now had two bad executors on the hostA, so we should 
blacklist the entire node.
    +    assert(blacklist.isExecutorBlacklisted("1"))
    +    assert(blacklist.isExecutorBlacklisted("2"))
    +    assert(blacklist.isNodeBlacklisted("hostA"))
    +
    +    clock.advance(blacklist.BLACKLIST_TIMEOUT_MILLIS / 2 + 1)
    +    blacklist.applyBlacklistTimeout()
    +    // executor 1 is no longer explicitly blacklisted, since we've gone 
past its recovery time,
    +    // but everything else is still blacklisted.
    +    assert(!blacklist.isExecutorBlacklisted("1"))
    +    assert(blacklist.isExecutorBlacklisted("2"))
    +    assert(blacklist.isNodeBlacklisted("hostA"))
    +    // make sure we don't leak memory
    +    assert(!blacklist.executorIdToBlacklistStatus.contains("1"))
    +    assert(!blacklist.nodeToBlacklistedExecs("hostA").contains("1"))
    +    clock.advance(blacklist.BLACKLIST_TIMEOUT_MILLIS)
    +    blacklist.applyBlacklistTimeout()
    +    assert(!blacklist.nodeIdToBlacklistExpiryTime.contains("hostA"))
    +  }
    +
    +  test("task failures expire with time") {
    +    configureBlacklistAndScheduler()
    +    var stageId = 0
    +    def failOneTaskInTaskSet(exec: String): Unit = {
    +      val taskSetBlacklist = createTaskSetBlacklist(stageId = stageId)
    +      taskSetBlacklist.updateBlacklistForFailedTask("host-" + exec, exec, 
0)
    +      blacklist.updateBlacklistForSuccessfulTaskSet(stageId, 0, 
taskSetBlacklist.execToFailures)
    +      stageId += 1
    +    }
    +    failOneTaskInTaskSet(exec = "1")
    +    // We have one sporadic failure on exec 2, but that's it.  Later 
checks ensure that we never
    +    // blacklist executor 2 despite this one failure.
    +    failOneTaskInTaskSet(exec = "2")
    +    assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set())
    +    assert(blacklist.nextExpiryTime === Long.MaxValue)
    +
    +    // We advance the clock past the expiry time.
    +    clock.advance(blacklist.BLACKLIST_TIMEOUT_MILLIS + 1)
    +    val t0 = clock.getTimeMillis()
    +    blacklist.applyBlacklistTimeout()
    +    assert(blacklist.nextExpiryTime === Long.MaxValue)
    +    failOneTaskInTaskSet(exec = "1")
    +
    +    // Because the 2nd failure on executor 1 happened past the expiry 
time, nothing should have been
    +    // blacklisted.
    +    assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set())
    +
    +    // Now we add one more failure, within the timeout, and it should be 
counted.
    +    clock.setTime(t0 + blacklist.BLACKLIST_TIMEOUT_MILLIS - 1)
    +    val t1 = clock.getTimeMillis()
    +    failOneTaskInTaskSet(exec = "1")
    +    blacklist.applyBlacklistTimeout()
    +    assertEquivalentToSet(blacklist.isExecutorBlacklisted(_), Set("1"))
    +    assert(blacklist.nextExpiryTime === t1 + 
blacklist.BLACKLIST_TIMEOUT_MILLIS)
    +
    +    // Fail a second executor, and go over its expiry as well.
    +    clock.setTime(t1 + blacklist.BLACKLIST_TIMEOUT_MILLIS - 1)
    --- End diff --
    
     isn't this going over the expiry for executor 1 (not the expiry for the 
"second executor" that failed here?  Also can you change this to explicitly say 
"executor 3", since "second executor" is a little confusing


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to