Skip to content

Commit

Permalink
Add hadoop-client-runtime dependency to fix quickstart NoClassDefFoun…
Browse files Browse the repository at this point in the history
…dError issue (#13548)
  • Loading branch information
yashmayya authored Jul 8, 2024
1 parent 4b5bd21 commit 5e03263
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pinot-plugins/pinot-input-format/pinot-parquet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 5e03263

Please sign in to comment.