This is an automated email from the ASF dual-hosted git repository.
gortiz 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 5e03263dfb Add hadoop-client-runtime dependency to fix quickstart
NoClassDefFoundError issue (#13548)
5e03263dfb is described below
commit 5e03263dfb9f25604981ff678c79a952ae3a7e7a
Author: Yash Mayya <[email protected]>
AuthorDate: Mon Jul 8 20:21:25 2024 +0530
Add hadoop-client-runtime dependency to fix quickstart NoClassDefFoundError
issue (#13548)
---
pinot-plugins/pinot-input-format/pinot-parquet/pom.xml | 5 +++++
pom.xml | 18 ++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
b/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
index 2a94606ebc..1be6c6703a 100644
--- a/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
+++ b/pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
@@ -51,6 +51,11 @@
<artifactId>hadoop-common</artifactId>
<scope>${hadoop.dependencies.scope}</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-client-runtime</artifactId>
+ <scope>${hadoop.dependencies.scope}</scope>
+ </dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>stax2-api</artifactId>
diff --git a/pom.xml b/pom.xml
index f8b1e353b7..1d250b6ef4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1069,6 +1069,24 @@
<version>${hadoop.version}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-client-runtime</artifactId>
+ <version>${hadoop.version}</version>
+ <scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-client-api</artifactId>
+ <version>${hadoop.version}</version>
+ <scope>provided</scope>
+ </dependency>
<!-- Solve the dependency converge issue within hadoop libraries -->
<dependency>
<groupId>ch.qos.reload4j</groupId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]