-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-43548][SS] Remove workaround for HADOOP-16255 #41209
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
|
cc @attilapiros @viirya @sunchao @pan3793 FYI |
sunchao
left a comment
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.
LGTM - pending CI
|
Hmm .. does that mean Hadoop 3.2.0 won't work with this? |
|
Hm, we currently build Spark w/ Hadoop 3.3.0 by default it might be fine but I would also ask some more looks e.g., @srowen @mridulm @tgravescs @dongjoon-hyun |
|
Spark only works with Hadoop 3.3.1+ at the moment, as we discovered in #40847. We can potentially make it work with Hadoop 3.2.2+ if there's a workaround for https://issues.apache.org/jira/browse/SPARK-40039 which uses Hadoop API that only exist in Hadoop 3.3.1+. It definitely won't work with Hadoop 3.2.0 due to some shaded client related issues. |
|
Thanks for clarification. Lgtm2 |
dongjoon-hyun
left a comment
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.
+1, LGTM.
### What changes were proposed in this pull request? The pr aims to remove workaround for HADOOP-16255. https://issues.apache.org/jira/browse/HADOOP-16255 ### Why are the changes needed? - Because HADOOP-16255 has been fix after hadoop version 3.1.2. Spark support hadoop version: >= 3.2.2 or >= 3.3.1 - Make code clean. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass GA. Closes apache#41209 from panbingkun/SPARK-43548. Authored-by: panbingkun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>

What changes were proposed in this pull request?
The pr aims to remove workaround for HADOOP-16255.
https://issues.apache.org/jira/browse/HADOOP-16255
Why are the changes needed?
Does this PR introduce any user-facing change?
No.
How was this patch tested?
Pass GA.