aboutsummaryrefslogtreecommitdiff
path: root/project/MimaExcludes.scala
diff options
context:
space:
mode:
authorLianhui Wang <lianhuiwang09@gmail.com>2016-02-23 11:08:39 -0800
committerAndrew Or <andrew@databricks.com>2016-02-23 11:08:39 -0800
commit9f4263392e492b5bc0acecec2712438ff9a257b7 (patch)
tree88c559539bf463d31d3f84d8a87794868ce88c35 /project/MimaExcludes.scala
parent5d69eaf097bfb9fad9f6e4433c6cd40ba0552a56 (diff)
downloadspark-9f4263392e492b5bc0acecec2712438ff9a257b7.tar.gz
spark-9f4263392e492b5bc0acecec2712438ff9a257b7.tar.bz2
spark-9f4263392e492b5bc0acecec2712438ff9a257b7.zip
[SPARK-7729][UI] Executor which has been killed should also be displayed on Executor Tab
andrewor14 squito Dead Executors should also be displayed on Executor Tab. as following: ![image](https://cloud.githubusercontent.com/assets/545478/11492707/ae55d7f6-982b-11e5-919a-b62cd84684b2.png) Author: Lianhui Wang <lianhuiwang09@gmail.com> This patch had conflicts when merged, resolved by Committer: Andrew Or <andrew@databricks.com> Closes #10058 from lianhuiwang/SPARK-7729.
Diffstat (limited to 'project/MimaExcludes.scala')
-rw-r--r--project/MimaExcludes.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 47693aa29d..b12aefcf83 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -272,6 +272,9 @@ object MimaExcludes {
// SPARK-13220 Deprecate yarn-client and yarn-cluster mode
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.SparkContext.org$apache$spark$SparkContext$$createTaskScheduler")
+ ) ++ Seq (
+ // SPARK-7729 Executor which has been killed should also be displayed on Executor Tab
+ ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.status.api.v1.ExecutorSummary.this")
)
case v if v.startsWith("1.6") =>
Seq(