Skip to content

[opt](paimon/iceberg)upgrade paimon to 1.0.1, iceberg to 1.6.1 #49280

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[opt](mvn) remove iceberg-aws-bundle and upgrade aws sdk to 2.29.26 (#…
…47117)

### What problem does this PR solve?

1. No need to depend on iceberg-aws-bundle, because we've already
declare the depends we need separately.
2. upgrade aws sdk to 2.29.26 to prepare for s3 tables
  • Loading branch information
morningman authored and wuwenchi committed Apr 24, 2025
commit 9790fe2bec939e0c7c608c9f61118de5d879789e
10 changes: 2 additions & 8 deletions fe/fe-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ under the License.
<doris.home>${basedir}/../../</doris.home>
<doris.thirdparty>${basedir}/../../thirdparty</doris.thirdparty>
<fe_ut_parallel>1</fe_ut_parallel>
<awssdk.version>2.20.131</awssdk.version>
<huaweiobs.version>3.1.1-hw-46</huaweiobs.version>
<tencentcos.version>8.2.7</tencentcos.version>
</properties>
Expand Down Expand Up @@ -502,10 +501,10 @@ under the License.
<artifactId>s3</artifactId>
<version>${awssdk.version}</version>
<exclusions>
<exclusion>
<!--exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusion-->
</exclusions>
</dependency>
<!-- tencent cloud sts -->
Expand Down Expand Up @@ -660,11 +659,6 @@ under the License.
<groupId>org.apache.iceberg</groupId>
<artifactId>iceberg-aws</artifactId>
</dependency>
<dependency>
<groupId>org.apache.iceberg</groupId>
<artifactId>iceberg-aws-bundle</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.paimon</groupId>
<artifactId>paimon-core</artifactId>
Expand Down
6 changes: 1 addition & 5 deletions fe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ under the License.
<azure.sdk.batch.version>12.22.0</azure.sdk.batch.version>
<semver4j.version>5.3.0</semver4j.version>
<aliyun-sdk-oss.version>3.15.0</aliyun-sdk-oss.version>
<awssdk.version>2.29.26</awssdk.version>
</properties>
<profiles>
<profile>
Expand Down Expand Up @@ -1328,11 +1329,6 @@ under the License.
<artifactId>iceberg-aws</artifactId>
<version>${iceberg.version}</version>
</dependency>
<dependency>
<groupId>org.apache.iceberg</groupId>
<artifactId>iceberg-aws-bundle</artifactId>
<version>${iceberg.version}</version>
</dependency>
<dependency>
<groupId>com.aliyun.odps</groupId>
<artifactId>odps-sdk-core</artifactId>
Expand Down
Loading