This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new ab70b9f49ec [fix](iceberg) Add missing iceberg-aws dependency to
metadata scanner (#55741)
ab70b9f49ec is described below
commit ab70b9f49ecf56ec63a8fd888974d89362cc3f13
Author: zy-kkk <[email protected]>
AuthorDate: Sun Sep 7 01:08:57 2025 +0800
[fix](iceberg) Add missing iceberg-aws dependency to metadata scanner
(#55741)
## Issue
Fixed `NoSuchMethodException` when accessing S3-based Iceberg tables:
- `Cannot create org.apache.iceberg.aws.ApacheHttpClientConfigurations`
- Missing `ApacheHttpClientConfigurations.create` method
---
fe/be-java-extensions/iceberg-metadata-scanner/pom.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/fe/be-java-extensions/iceberg-metadata-scanner/pom.xml
b/fe/be-java-extensions/iceberg-metadata-scanner/pom.xml
index d3c4141a786..798caa5cddd 100644
--- a/fe/be-java-extensions/iceberg-metadata-scanner/pom.xml
+++ b/fe/be-java-extensions/iceberg-metadata-scanner/pom.xml
@@ -52,6 +52,11 @@ under the License.
<artifactId>iceberg-core</artifactId>
<version>${iceberg.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.iceberg</groupId>
+ <artifactId>iceberg-aws</artifactId>
+ <version>${iceberg.version}</version>
+ </dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>auth</artifactId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]