-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-6018] [YARN] NoSuchMethodError in Spark app is swallowed by YARN AM #4773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Can one of the admins verify this patch? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, the problem is that this was not catching Error, but just Exception, right?
I think this generates a compiler warning, so probably should be case _: Throwable =>. And you can avoid the duplicate getCause calls by giving this variable a name instead of using the placeholder.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: reusing the name e is ambiguous but also unnecessary; this can be _ too? (Yes the second clause will generate a warning without : Throwable
|
Thank you Marcelo and Sean. Incorporated your comments in the new commit. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
e still shadows the e: InvocationTargetException above. I know it was already that way in the code and it works as intended this way. However while we're here I wonder if it's worth calling this variable cause? then it's obvious that cause is being rethrown.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. That is even better. Fixed.
|
ok to test |
|
Test build #27967 has started for PR 4773 at commit
|
|
Test build #27967 has finished for PR 4773 at commit
|
|
Test PASSed. |
|
LGTM. Let me leave it open for a day at least for other thoughts. |
|
Ah, good catch. For a second I thought we were catching throwable here, but it seems that the throwable is part of the cause, not what we're catching. LGTM I'm merging this into master 1.3 and 1.2. |
…RN AM Author: Cheolsoo Park <[email protected]> Closes #4773 from piaozhexiu/SPARK-6018 and squashes the following commits: 2a919d5 [Cheolsoo Park] Rename e with cause to avoid duplicate names 1e71d2d [Cheolsoo Park] Replace placeholder with throwable eb5750d [Cheolsoo Park] NoSuchMethodError in Spark app is swallowed by YARN AM (cherry picked from commit 5f3238b) Signed-off-by: Andrew Or <[email protected]>
…RN AM Author: Cheolsoo Park <[email protected]> Closes #4773 from piaozhexiu/SPARK-6018 and squashes the following commits: 2a919d5 [Cheolsoo Park] Rename e with cause to avoid duplicate names 1e71d2d [Cheolsoo Park] Replace placeholder with throwable eb5750d [Cheolsoo Park] NoSuchMethodError in Spark app is swallowed by YARN AM (cherry picked from commit 5f3238b) Signed-off-by: Andrew Or <[email protected]>
No description provided.