This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 9b7c6af58111362af3fad6b37d7c09341ac321a4 Author: Tiewei Fang <[email protected]> AuthorDate: Thu Feb 1 23:02:42 2024 +0800 [Fix](JDK17) Fixed that BE could not be started using JDK17 (#30286) Issue Number: #30484 This is because hadoop-client-api relies on hadoop-common. In the case of JDK17, it will still include hadoop-common. --- fe/be-java-extensions/preload-extensions/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fe/be-java-extensions/preload-extensions/pom.xml b/fe/be-java-extensions/preload-extensions/pom.xml index a63c0a9b238..8c6f57f746c 100644 --- a/fe/be-java-extensions/preload-extensions/pom.xml +++ b/fe/be-java-extensions/preload-extensions/pom.xml @@ -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> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
