-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-33495][BUILD] Remove commons-logging.jar's dependency #30470
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -570,12 +570,6 @@ | |
| <artifactId>commons-beanutils</artifactId> | ||
| <version>1.9.4</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| <!-- Hive uses commons-logging 1.1.3 from 0.13 to 1.2 --> | ||
| <version>1.1.3</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.ivy</groupId> | ||
| <artifactId>ivy</artifactId> | ||
|
|
@@ -590,11 +584,23 @@ | |
| <groupId>commons-httpclient</groupId> | ||
| <artifactId>commons-httpclient</artifactId> | ||
| <version>${httpclient.classic.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
| <artifactId>httpclient</artifactId> | ||
| <version>${commons.httpclient.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
|
|
@@ -636,13 +642,25 @@ | |
| <artifactId>htmlunit-driver</artifactId> | ||
| <version>${htmlunit.version}</version> | ||
| <scope>test</scope> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <!-- Update htmlunit dependency that selenium uses for better JS support --> | ||
| <dependency> | ||
| <groupId>net.sourceforge.htmlunit</groupId> | ||
| <artifactId>htmlunit</artifactId> | ||
| <version>${htmlunit.version}</version> | ||
| <scope>test</scope> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>net.sourceforge.htmlunit</groupId> | ||
|
|
@@ -1091,6 +1109,12 @@ | |
| <artifactId>hadoop-client-runtime</artifactId> | ||
| <version>${hadoop.version}</version> | ||
| <scope>${hadoop.deps.scope}</scope> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it really unused in cc @sunchao
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a runtime dependency for
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I can test tis since we also have a env of hadoop-3.2.1 and hadoop-3.3.0. I will test this later
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Seems ok.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Test use
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm always worried at some point something adds the slf4j -> commons-logging binding and then we have something circular here :) this might be fine. Is it helpful, like does it help get more log messages to the same place? |
||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.hadoop</groupId> | ||
|
|
@@ -2106,6 +2130,10 @@ | |
| <groupId>javax.servlet</groupId> | ||
| <artifactId>servlet-api</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>commons-logging</groupId> | ||
| <artifactId>commons-logging</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
|
|
||
|
|
||
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.
Could you manual test if we can connect Hive 0.13 - Hive-1.2 after removing commons-logging?
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.
Yea, our env is hive 1.2.1, I will test this later.
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.
Hive need 0.13~ 1.2 need
commons-logging. butjcl-over-slf4jcan replace it. For different usage of hive jars:jcl-over-slf4jandcommons-loggingnot coexistence.So it's safe to remove this.