Uh oh!
There was an error while loading. Please reload this page.
[SPARK-19607] Finding QueryExecution that matches provided executionId - #16940
Closed
ala wants to merge 1 commit into
Closed
[SPARK-19607] Finding QueryExecution that matches provided executionId#16940ala wants to merge 1 commit into
ala wants to merge 1 commit into
Conversation
ala
commented
Feb 15, 2017
ContributorAuthor
rxin
commented
Feb 15, 2017
Contributor
LGTM (pending Jenkins). |
SparkQA
commented
Feb 15, 2017
Test build #72937 has finished for PR 16940 at commit
|
Contributor
Merging in master (since the failing test case is unrelated). |
dongjoon-hyun
commented
Feb 15, 2017
Member
ghost
pushed a commit
to dbtsai/spark
that referenced
this pull request
Feb 15, 2017
…ecutionId ## What changes were proposed in this pull request? apache#16940 adds a test case which does not stop the spark job. It causes many failures of other test cases. - https://amplab.cs.berkeley.edu/jenkins/view/Spark%20QA%20Test%20(Dashboard)/job/spark-master-test-sbt-hadoop-2.7/2403/consoleFull - https://amplab.cs.berkeley.edu/jenkins/view/Spark%20QA%20Test%20(Dashboard)/job/spark-master-test-maven-hadoop-2.7/2600/consoleFull ``` [info] org.apache.spark.SparkException: Only one SparkContext may be running in this JVM (see SPARK-2243). To ignore this error, set spark.driver.allowMultipleContexts = true. The currently running SparkContext was created at: ``` ## How was this patch tested? Pass the Jenkins test. Author: Dongjoon Hyun <dongjoon@apache.org> Closesapache#16943 from dongjoon-hyun/SPARK-19607-2.
cmonkey pushed a commit
to cmonkey/spark
that referenced
this pull request
Feb 16, 2017
## What changes were proposed in this pull request? Implementing a mapping between executionId and corresponding QueryExecution in SQLExecution. ## How was this patch tested? Adds a unit test. Author: Ala Luszczak <ala@databricks.com> Closesapache#16940 from ala/execution-id.
cmonkey pushed a commit
to cmonkey/spark
that referenced
this pull request
Feb 16, 2017
…ecutionId ## What changes were proposed in this pull request? apache#16940 adds a test case which does not stop the spark job. It causes many failures of other test cases. - https://amplab.cs.berkeley.edu/jenkins/view/Spark%20QA%20Test%20(Dashboard)/job/spark-master-test-sbt-hadoop-2.7/2403/consoleFull - https://amplab.cs.berkeley.edu/jenkins/view/Spark%20QA%20Test%20(Dashboard)/job/spark-master-test-maven-hadoop-2.7/2600/consoleFull ``` [info] org.apache.spark.SparkException: Only one SparkContext may be running in this JVM (see SPARK-2243). To ignore this error, set spark.driver.allowMultipleContexts = true. The currently running SparkContext was created at: ``` ## How was this patch tested? Pass the Jenkins test. Author: Dongjoon Hyun <dongjoon@apache.org> Closesapache#16943 from dongjoon-hyun/SPARK-19607-2.
liancheng pushed a commit
to liancheng/spark
that referenced
this pull request
Mar 17, 2017
Implementing a mapping between executionId and corresponding QueryExecution in SQLExecution. Adds a unit test. Author: Ala Luszczak <ala@databricks.com> Closesapache#16940 from ala/execution-id. (cherry picked from commit b55563c) Signed-off-by: Reynold Xin <rxin@databricks.com>
liancheng pushed a commit
to liancheng/spark
that referenced
this pull request
Mar 17, 2017
…ecutionId ## What changes were proposed in this pull request? This is a backport of apache@59dc26eapache#16940 adds a test case which does not stop the spark job. It causes many failures of other test cases. - https://amplab.cs.berkeley.edu/jenkins/view/Spark%20QA%20Test%20(Dashboard)/job/spark-master-test-sbt-hadoop-2.7/2403/consoleFull - https://amplab.cs.berkeley.edu/jenkins/view/Spark%20QA%20Test%20(Dashboard)/job/spark-master-test-maven-hadoop-2.7/2600/consoleFull ``` [info] org.apache.spark.SparkException: Only one SparkContext may be running in this JVM (see SPARK-2243). To ignore this error, set spark.driver.allowMultipleContexts = true. The currently running SparkContext was created at: ``` ## How was this patch tested? Pass the Jenkins test. Author: Dongjoon Hyun <dongjoon@apache.org> Closesapache#234 from ala/execution-id-fix.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
Implementing a mapping between executionId and corresponding QueryExecution in SQLExecution.
How was this patch tested?
Adds a unit test.