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

    https://github.com/apache/spark/pull/8945#discussion_r41591815
  
    --- Diff: 
core/src/test/scala/org/apache/spark/deploy/StandaloneDynamicAllocationSuite.scala
 ---
    @@ -369,6 +369,35 @@ class StandaloneDynamicAllocationSuite
         assert(apps.head.getExecutorLimit === 1)
       }
     
    +  test("the pending replacement executors should not be lost 
(SPARK-10515)") {
    +    sc = new SparkContext(appConf)
    +    val appId = sc.applicationId
    +    eventually(timeout(10.seconds), interval(10.millis)) {
    +      val apps = getApplications()
    +      assert(apps.size === 1)
    +      assert(apps.head.id === appId)
    +      assert(apps.head.executors.size === 2)
    +      assert(apps.head.getExecutorLimit === Int.MaxValue)
    +    }
    +    // sync executors between the Master and the driver, needed because
    +    // the driver refuses to kill executors it does not know about
    +    syncExecutors(sc)
    +    val executors = getExecutorIds(sc)
    +    assert(executors.size === 2)
    +
    +    // kill executor,and replace it
    +    assert(sc.killAndReplaceExecutor(executors.head))
    +    assert(master.apps.head.executors.size === 2)
    +
    +    assert(sc.killExecutor(executors.head))
    +    assert(master.apps.head.executors.size === 2)
    --- End diff --
    
    This has the same problem I mentioned before in the other PR. 
`sc.killExecutor` does not immediately update the state of the `master.apps` 
list. So these tests are bound to fail in weird ways.
    
    You need to use `killNExecutors` instead of `sc.killExecutor` and 
`getApplications` instead of `master.apps`. See other tests in this same file.


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