-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[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
dataroaring
merged 3 commits into
apache:branch-3.0
from
wuwenchi:fix-upgrade-paimon-3.0
Apr 25, 2025
Merged
[opt](paimon/iceberg)upgrade paimon to 1.0.1, iceberg to 1.6.1 #49280
dataroaring
merged 3 commits into
apache:branch-3.0
from
wuwenchi:fix-upgrade-paimon-3.0
Apr 25, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
run buildall |
TPC-H: Total hot run time: 40086 ms
|
TPC-DS: Total hot run time: 196500 ms
|
ClickBench: Total hot run time: 31.71 s
|
028b5ec
to
10bd080
Compare
run buildall |
TPC-H: Total hot run time: 39971 ms
|
TPC-DS: Total hot run time: 197262 ms
|
ClickBench: Total hot run time: 32.4 s
|
10bd080
to
d452b3c
Compare
run buildall |
TPC-H: Total hot run time: 39745 ms
|
TPC-DS: Total hot run time: 197813 ms
|
ClickBench: Total hot run time: 32.75 s
|
d452b3c
to
4459685
Compare
run buildall |
TPC-H: Total hot run time: 40190 ms
|
TPC-DS: Total hot run time: 197855 ms
|
ClickBench: Total hot run time: 31.84 s
|
…apache#46990) Problem Summary: Upgrade the Paimon version to 1.0.0 By default, paimon uses a caching catalog to cache some data to improve read performance. FYI: https://paimon.apache.org/docs/1.0/maintenance/configurations/#catalogoptions If you do not want to use this catalog, you can add a configuration `paimon.cache-enabled ` to turn it off: ``` CREATE CATALOG `c1` PROPERTIES ( "type" = "paimon", "paimon.catalog.type" = "xxx", "paimon.cache-enabled" = "false", "warehouse" = "xxx" ); ``` If you want to modify cache-related parameters, you can add the `paimon.` prefix to the parameters supported by paimon, such as: ``` CREATE CATALOG `c1` PROPERTIES ( "type" = "paimon", "paimon.catalog.type" = "xxx", "warehouse" = "xxx", "paimon.cache.expiration-interval" = "20 min", "paimon.cache.manifest.small-file-memory"="10 mb" ); ``` Note: During the doris upgrade process, this error may occur:  This is because doris will upgrade be first, and then upgrade fe. During this process, the version of paimon on be may be higher than that on fe. This is normal. Because bucketkey judgment is newly added in the higher version of paimon, which is not available in the lower version. After the fe upgrade is completed normally, there will be no more errors.
### Release note Upgrade paimon to version 1.0.1
4459685
to
0d5185b
Compare
run buildall |
TPC-H: Total hot run time: 39861 ms
|
TPC-DS: Total hot run time: 197620 ms
|
ClickBench: Total hot run time: 32.35 s
|
…pache#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
run buildall |
dataroaring
approved these changes
Apr 25, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
bp #46990 #47768 #47117