Skip to content
Snippets Groups Projects
Commit 91903e0a authored by Rui Li's avatar Rui Li Committed by Matei Zaharia
Browse files

SPARK-2277: clear host->rack info properly

Hi mridulm, I just think of this issue of [#1212](https://github.com/apache/spark/pull/1212): I added FakeRackUtil to hold the host -> rack mapping. It should be cleaned up after use so that it won't mess up with test cases others may add later.
Really sorry about this.

Author: Rui Li <rui.li@intel.com>

Closes #1454 from lirui-intel/SPARK-2277-fix-UT and squashes the following commits:

f8ea25c [Rui Li] SPARK-2277: clear host->rack info properly
parent 1b790cf7
No related branches found
No related tags found
No related merge requests found
...@@ -475,6 +475,7 @@ class TaskSetManagerSuite extends FunSuite with LocalSparkContext with Logging { ...@@ -475,6 +475,7 @@ class TaskSetManagerSuite extends FunSuite with LocalSparkContext with Logging {
// Valid locality should contain PROCESS_LOCAL, NODE_LOCAL, RACK_LOCAL and ANY // Valid locality should contain PROCESS_LOCAL, NODE_LOCAL, RACK_LOCAL and ANY
assert(manager.myLocalityLevels.sameElements( assert(manager.myLocalityLevels.sameElements(
Array(PROCESS_LOCAL, NODE_LOCAL, RACK_LOCAL, ANY))) Array(PROCESS_LOCAL, NODE_LOCAL, RACK_LOCAL, ANY)))
FakeRackUtil.cleanUp()
} }
test("test RACK_LOCAL tasks") { test("test RACK_LOCAL tasks") {
...@@ -505,6 +506,7 @@ class TaskSetManagerSuite extends FunSuite with LocalSparkContext with Logging { ...@@ -505,6 +506,7 @@ class TaskSetManagerSuite extends FunSuite with LocalSparkContext with Logging {
// Offer host2 // Offer host2
// Task 1 can be scheduled with RACK_LOCAL // Task 1 can be scheduled with RACK_LOCAL
assert(manager.resourceOffer("execB", "host2", RACK_LOCAL).get.index === 1) assert(manager.resourceOffer("execB", "host2", RACK_LOCAL).get.index === 1)
FakeRackUtil.cleanUp()
} }
test("do not emit warning when serialized task is small") { test("do not emit warning when serialized task is small") {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment