Uh oh!
There was an error while loading. Please reload this page.
[SPARK-11870][Streaming][PySpark]Rethrow the exceptions in TransformFunction and TransformFunctionSerializer - #9847
Closed
zsxwing wants to merge 2 commits into
Closed
[SPARK-11870][Streaming][PySpark]Rethrow the exceptions in TransformFunction and TransformFunctionSerializer#9847zsxwing wants to merge 2 commits into
zsxwing wants to merge 2 commits into
Conversation
SparkQA
commented
Nov 19, 2015
Test build #46368 has finished for PR 9847 at commit
|
tdas
commented
Nov 20, 2015
Contributor
any unit test? |
tdas
commented
Nov 20, 2015
Contributor
and any other places where this sort of problem may occur? |
zsxwing
commented
Nov 20, 2015
MemberAuthor
Added a test to reproduce this issue |
tdas
commented
Nov 20, 2015
Contributor
LGTM. Will merge to master, 1.6, 1.5, 1.4 if i can. Thanks @zsxwing |
zsxwing
commented
Nov 20, 2015
MemberAuthor
retest this please |
SparkQA
commented
Nov 20, 2015
Test build #46379 has finished for PR 9847 at commit
|
asfgit pushed a commit
that referenced
this pull request
Nov 20, 2015
…Function and TransformFunctionSerializer TransformFunction and TransformFunctionSerializer don't rethrow the exception, so when any exception happens, it just return None. This will cause some weird NPE and confuse people. Author: Shixiong Zhu <shixiong@databricks.com> Closes#9847 from zsxwing/pyspark-streaming-exception. (cherry picked from commit be7a2cf) Signed-off-by: Tathagata Das <tathagata.das1565@gmail.com>
asfgit pushed a commit
that referenced
this pull request
Nov 20, 2015
…Function and TransformFunctionSerializer TransformFunction and TransformFunctionSerializer don't rethrow the exception, so when any exception happens, it just return None. This will cause some weird NPE and confuse people. Author: Shixiong Zhu <shixiong@databricks.com> Closes#9847 from zsxwing/pyspark-streaming-exception. (cherry picked from commit be7a2cf) Signed-off-by: Tathagata Das <tathagata.das1565@gmail.com>
asfgit pushed a commit
that referenced
this pull request
Nov 20, 2015
…Function and TransformFunctionSerializer TransformFunction and TransformFunctionSerializer don't rethrow the exception, so when any exception happens, it just return None. This will cause some weird NPE and confuse people. Author: Shixiong Zhu <shixiong@databricks.com> Closes#9847 from zsxwing/pyspark-streaming-exception. (cherry picked from commit be7a2cf) Signed-off-by: Tathagata Das <tathagata.das1565@gmail.com>
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.
TransformFunction and TransformFunctionSerializer don't rethrow the exception, so when any exception happens, it just return None. This will cause some weird NPE and confuse people.