mirror of
https://github.com/apache/impala.git
synced 2025-12-19 09:58:28 -05:00
Revert "IMPALA-14454: Exclude log4j 2 dependencies"
This reverts commit 52b87fcefd.
The original commit caused an issue when Impala is deployed together
with Apache Atlas. Coordinator failed to start with error message:
java.lang.NoClassDefFoundError: org/apache/logging/log4j/core/Layout
Solved minor conflict in impala-config.sh due to IMPALA-14478 applied
after IMPALA-14454.
Change-Id: I77127db8d833c675c18c30eb3d6542ca906cd2a9
Reviewed-on: http://gerrit.cloudera.org:8080/23788
Reviewed-by: Michael Smith <michael.smith@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
This commit is contained in:
committed by
Impala Public Jenkins
parent
c3dc7f9667
commit
d4992d532b
@@ -288,6 +288,7 @@ export IMPALA_JACKSON_DATABIND_VERSION=2.15.3
|
|||||||
export IMPALA_JSON_SMART_VERSION=2.4.11
|
export IMPALA_JSON_SMART_VERSION=2.4.11
|
||||||
export IMPALA_JUNIT_VERSION=4.12
|
export IMPALA_JUNIT_VERSION=4.12
|
||||||
export IMPALA_KITE_VERSION=1.1.0
|
export IMPALA_KITE_VERSION=1.1.0
|
||||||
|
export IMPALA_LOG4J2_VERSION=2.18.0
|
||||||
export IMPALA_PAC4J_VERSION=4.5.5
|
export IMPALA_PAC4J_VERSION=4.5.5
|
||||||
export IMPALA_RELOAD4j_VERSION=1.2.22
|
export IMPALA_RELOAD4j_VERSION=1.2.22
|
||||||
export IMPALA_SLF4J_VERSION=2.0.13
|
export IMPALA_SLF4J_VERSION=2.0.13
|
||||||
|
|||||||
22
fe/pom.xml
22
fe/pom.xml
@@ -375,13 +375,16 @@ under the License.
|
|||||||
<artifactId>*</artifactId>
|
<artifactId>*</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>log4j</groupId>
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
<artifactId>log4j</artifactId>
|
<artifactId>log4j-slf4j-impl</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
<!-- Exclude log4j 2.x, we use reload4j -->
|
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>log4j-1.2-api</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>log4j</groupId>
|
||||||
|
<artifactId>log4j</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
<!-- We should exclude hive-serde since it brings along a
|
<!-- We should exclude hive-serde since it brings along a
|
||||||
different version of flatbuffers causing problems for loading tables -->
|
different version of flatbuffers causing problems for loading tables -->
|
||||||
@@ -427,10 +430,14 @@ under the License.
|
|||||||
<artifactId>hive-standalone-metastore</artifactId>
|
<artifactId>hive-standalone-metastore</artifactId>
|
||||||
<version>${hive.version}</version>
|
<version>${hive.version}</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<!-- Impala uses reload4j v1; avoid pulling in log4j2 -->
|
<!-- Impala uses log4j v1; avoid pulling in slf4j handling for log4j2 -->
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>log4j-slf4j-impl</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
|
<artifactId>log4j-1.2-api</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>org.apache.hive</groupId>
|
<groupId>org.apache.hive</groupId>
|
||||||
@@ -912,7 +919,8 @@ under the License.
|
|||||||
<exclude>org.apache.ant:*</exclude>
|
<exclude>org.apache.ant:*</exclude>
|
||||||
<exclude>org.eclipse.jetty:*</exclude>
|
<exclude>org.eclipse.jetty:*</exclude>
|
||||||
<!-- We use reload4j, exclude log4j 1.x and 2.x -->
|
<!-- We use reload4j, exclude log4j 1.x and 2.x -->
|
||||||
<exclude>org.apache.logging.log4j:*</exclude>
|
<exclude>org.apache.logging.log4j:log4j-slf4j-impl</exclude>
|
||||||
|
<exclude>org.apache.logging.log4j:log4j-1.2-api</exclude>
|
||||||
<exclude>log4j:*</exclude>
|
<exclude>log4j:*</exclude>
|
||||||
<exclude>org.slf4j:slf4j-log4j12</exclude>
|
<exclude>org.slf4j:slf4j-log4j12</exclude>
|
||||||
<!-- IMPALA-9108: Avoid pulling in leveldbjni, which is unneeded. -->
|
<!-- IMPALA-9108: Avoid pulling in leveldbjni, which is unneeded. -->
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ under the License.
|
|||||||
</exclusion>
|
</exclusion>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
<artifactId>*</artifactId>
|
<artifactId>log4j-slf4j-impl</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|||||||
12
java/pom.xml
12
java/pom.xml
@@ -86,6 +86,7 @@ under the License.
|
|||||||
<velocity-engine-core.version>${env.IMPALA_VELOCITY_ENGINE_CORE_VERSION}</velocity-engine-core.version>
|
<velocity-engine-core.version>${env.IMPALA_VELOCITY_ENGINE_CORE_VERSION}</velocity-engine-core.version>
|
||||||
<json-smart.version>${env.IMPALA_JSON_SMART_VERSION}</json-smart.version>
|
<json-smart.version>${env.IMPALA_JSON_SMART_VERSION}</json-smart.version>
|
||||||
<commons-dbcp2.version>${env.IMPALA_DBCP2_VERSION}</commons-dbcp2.version>
|
<commons-dbcp2.version>${env.IMPALA_DBCP2_VERSION}</commons-dbcp2.version>
|
||||||
|
<log4j2.version>${env.IMPALA_LOG4J2_VERSION}</log4j2.version>
|
||||||
<dropwizard-metrics.version>${env.IMPALA_DROPWIZARD_METRICS_VERSION}</dropwizard-metrics.version>
|
<dropwizard-metrics.version>${env.IMPALA_DROPWIZARD_METRICS_VERSION}</dropwizard-metrics.version>
|
||||||
<aircompressor.version>${env.IMPALA_AIRCOMPRESSOR_VERSION}</aircompressor.version>
|
<aircompressor.version>${env.IMPALA_AIRCOMPRESSOR_VERSION}</aircompressor.version>
|
||||||
<datasketches.version>${env.IMPALA_DATASKETCHES_VERSION}</datasketches.version>
|
<datasketches.version>${env.IMPALA_DATASKETCHES_VERSION}</datasketches.version>
|
||||||
@@ -383,6 +384,17 @@ under the License.
|
|||||||
<version>${jackson.version}</version>
|
<version>${jackson.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
|
<artifactId>log4j-api</artifactId>
|
||||||
|
<version>${log4j2.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
|
<artifactId>log4j-core</artifactId>
|
||||||
|
<version>${log4j2.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.datasketches</groupId>
|
<groupId>org.apache.datasketches</groupId>
|
||||||
<artifactId>datasketches-java</artifactId>
|
<artifactId>datasketches-java</artifactId>
|
||||||
|
|||||||
Reference in New Issue
Block a user