aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorJose Torres <jose@databricks.com>2017-12-22 23:05:03 -0800
committerShixiong Zhu <zsxwing@gmail.com>2017-12-22 23:05:03 -0800
commit8941a4abcada873c26af924e129173dc33d66d71 (patch)
tree2a7891c8e3a7ec34f599d018829afd55eb9f07ea /project
parentd23dc5b8ef6c6aee0a31a304eefeb6ddb1c26c0f (diff)
[SPARK-22789] Map-only continuous processing execution
## What changes were proposed in this pull request? Basic continuous execution, supporting map/flatMap/filter, with commits and advancement through RPC. ## How was this patch tested? new unit-ish tests (exercising execution end to end) Author: Jose Torres <jose@databricks.com> Closes #19984 from jose-torres/continuous-impl.
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 9902fedb65..81584af681 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -36,6 +36,11 @@ object MimaExcludes {
// Exclude rules for 2.3.x
lazy val v23excludes = v22excludes ++ Seq(
+ // SPARK-22789: Map-only continuous processing execution
+ ProblemFilters.exclude[IncompatibleResultTypeProblem]("org.apache.spark.sql.streaming.StreamingQueryManager.startQuery$default$8"),
+ ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.sql.streaming.StreamingQueryManager.startQuery$default$6"),
+ ProblemFilters.exclude[IncompatibleResultTypeProblem]("org.apache.spark.sql.streaming.StreamingQueryManager.startQuery$default$9"),
+
// SPARK-22372: Make cluster submission use SparkApplication.
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.deploy.SparkHadoopUtil.getSecretKeyFromUserCredentials"),
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.deploy.SparkHadoopUtil.isYarnMode"),