This is an automated email from the ASF dual-hosted git repository.
xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 1ae85e19f6 Fix pinot-parquet NoClassFound issue (#12615)
1ae85e19f6 is described below
commit 1ae85e19f675e34569aa1a75a0e9b19066901d37
Author: Xiang Fu <[email protected]>
AuthorDate: Sun Mar 10 17:06:58 2024 -0700
Fix pinot-parquet NoClassFound issue (#12615)
---
pinot-plugins/pinot-input-format/pinot-parquet/pom.xml | 2 +-
pom.xml | 16 ++++++++++++++++
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
b/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
index 06458b7537..3e7fdef21c 100644
--- a/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
+++ b/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
@@ -68,7 +68,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-mapreduce-client-core</artifactId>
- <scope>test</scope>
+ <scope>${hadoop.dependencies.scope}</scope>
</dependency>
</dependencies>
</project>
diff --git a/pom.xml b/pom.xml
index 98a2fd0041..29a26c0045 100644
--- a/pom.xml
+++ b/pom.xml
@@ -792,6 +792,10 @@
<groupId>org.apache.hadoop.thirdparty</groupId>
<artifactId>hadoop-shaded-protobuf_3_7</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.jboss.xnio</groupId>
+ <artifactId>xnio-api</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -924,6 +928,18 @@
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-yarn-client</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-yarn-common</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-hdfs-client</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]