This is an automated email from the ASF dual-hosted git repository. ankitsultana pushed a commit to branch release-1.2.0-rc in repository https://gitbox.apache.org/repos/asf/pinot.git
commit 81cf64f26aa412781c7b77be8107ae60795978f5 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 b6a1f443b6..33c49d62a0 100644 --- a/pom.xml +++ b/pom.xml @@ -1073,6 +1073,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]
