-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
[ZEPPELIN-5969] Remove Hadoop2 Support #4674
Conversation
# Conflicts: # zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/ZeppelinFlinkClusterTest.java
Removing Hadoop2 support would be a big change, I'm not very familiar with Flink, but for Spark, it requires at least Spark 3.x to support Hadoop 3, the Livy module still uses Spark 2.4.8. And Spark moved to use Hadoop Shaded client since 3.2.0, which is a quite big change for Hadoop deps management. I suppose it requires much effort to complete this task, as the community is preparing for the 0.11 release, better to postpone this change to the next release. |
</properties> | ||
</profile> | ||
<profile> | ||
<id>hive1</id> |
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.
I think it requires a dedicated JIRA ticket to remove Hive 1.x on Flink interpreter
@@ -409,7 +409,7 @@ | |||
|
|||
<plugin> | |||
<artifactId>maven-surefire-plugin</artifactId> | |||
<configuration combine.children="append"> |
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.
why change this?
@@ -80,9 +80,6 @@ public static String downloadFlink(String flinkVersion, String scalaVersion) { | |||
runShellCommand(new String[]{"wget", | |||
"https://repo1.maven.org/maven2/org/apache/hive/hive-exec/2.3.4/hive-exec-2.3.4.jar", | |||
"-P", targetFlinkHomeFolder + "/lib"}); | |||
runShellCommand(new String[]{"wget", | |||
"https://repo1.maven.org/maven2/org/apache/flink/flink-shaded-hadoop2-uber/2.7.5-1.8.1/flink-shaded-hadoop2-uber-2.7.5-1.8.1.jar", |
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.
hadoop-client-api
and hadoop-client-runtime
should be used instead, see
Closed in favour of #4691 |
What is this PR for?
This pull request removes support for Hadoop 2.
What type of PR is it?
Improvement
Todos
What is the Jira issue?
How should this be tested?
Questions: