This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit bce289ece101b3cc01dc4ed3fb6c94c36d512518 Author: Ashin Gau <[email protected]> AuthorDate: Sun Oct 8 23:39:46 2023 +0800 [fix](hudi) hbase-2.5.5 conflict with hudi (#25136) PR https://github.com/apache/doris/pull/24606 has updated hbase version to 2.5.5, but it conflict with hudi, causing error like: ``` org.apache.doris.common.AnalysisException: errCode = 2, detailMessage = Unexpected exception: Failed to get hudi partitions at org.apache.doris.qe.StmtExecutor.analyze(StmtExecutor.java:1021) ~[doris-fe.jar:1.2-SNAPSHOT] at org.apache.doris.qe.StmtExecutor.executeByLegacy(StmtExecutor.java:696) ~[doris-fe.jar:1.2-SNAPSHOT] ... Caused by: java.lang.NullPointerException at org.apache.hadoop.fs.FilterFileSystem.getConf(FilterFileSystem.java:524) ~[hadoop-common-3.3.6.jar:?] at org.apache.hadoop.hbase.io.hfile.ReaderContext.<init>(ReaderContext.java:53) ~[hbase-server-2.5.5.jar:2.5.5] at org.apache.hadoop.hbase.io.hfile.ReaderContextBuilder.build(ReaderContextBuilder.java:106) ~[hbase-server-2.5.5.jar:2.5.5] ``` --- fe/pom.xml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/fe/pom.xml b/fe/pom.xml index 65b8fb306a8..5c6e23800a9 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -268,7 +268,6 @@ under the License. <spark.version>2.4.6</spark.version> <hive.version>3.1.3</hive.version> <hive.common.version>2.3.9</hive.common.version> - <hbase.version>2.5.5</hbase.version> <nimbusds.version>9.35</nimbusds.version> <mapreduce.client.version>2.10.1</mapreduce.client.version> <calcite.version>1.33.0</calcite.version> @@ -370,21 +369,6 @@ under the License. <artifactId>nimbus-jose-jwt</artifactId> <version>${nimbusds.version}</version> </dependency> - <dependency> - <groupId>org.apache.hbase</groupId> - <artifactId>hbase-protocol-shaded</artifactId> - <version>${hbase.version}</version> - </dependency> - <dependency> - <groupId>org.apache.hbase</groupId> - <artifactId>hbase-server</artifactId> - <version>${hbase.version}</version> - </dependency> - <dependency> - <groupId>org.apache.hbase</groupId> - <artifactId>hbase-client</artifactId> - <version>${hbase.version}</version> - </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-bundle</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
