Skip to content

Commit

Permalink
[Fix](JDK17) Fixed that BE could not be started using JDK17 (#30286)
Browse files Browse the repository at this point in the history
Issue Number: #30484

This is because hadoop-client-api relies on hadoop-common.
In the case of JDK17, it will still include hadoop-common.
  • Loading branch information
BePPPower authored and Doris-Extras committed Feb 1, 2024
1 parent 5e60ca0 commit 9b7c6af
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fe/be-java-extensions/preload-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ under the License.
<artifactId>spark-sql_${scala.binary.version}</artifactId>
<version>${spark.version}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>hadoop-client-api</artifactId>
<groupId>org.apache.hadoop</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
Expand Down

0 comments on commit 9b7c6af

Please sign in to comment.