-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[opt](paimon)Upgrade the Paimon version to 1.0.0 and Iceberg to 1.6.1 #46990
Conversation
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
run buildall |
TPC-H: Total hot run time: 32924 ms
|
TPC-DS: Total hot run time: 188631 ms
|
ClickBench: Total hot run time: 31.04 s
|
return hadoopAuthenticator.doAs(() -> catalog.tableExists(Identifier.create(dbName, tblName))); | ||
return hadoopAuthenticator.doAs(() -> { | ||
try { | ||
catalog.getTable(Identifier.create(dbName, tblName)); |
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.
The API is changed?
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.
yes
run buildall |
TPC-H: Total hot run time: 32088 ms
|
TPC-DS: Total hot run time: 187610 ms
|
ClickBench: Total hot run time: 30.69 s
|
6ec6527
to
d48a6aa
Compare
run buildall |
TPC-H: Total hot run time: 32150 ms
|
TPC-DS: Total hot run time: 193869 ms
|
ClickBench: Total hot run time: 30.54 s
|
run buildall |
TPC-H: Total hot run time: 32524 ms
|
TPC-DS: Total hot run time: 194900 ms
|
ClickBench: Total hot run time: 31 s
|
b731137
to
e0689f2
Compare
run buildall |
TPC-H: Total hot run time: 32553 ms
|
TPC-DS: Total hot run time: 184758 ms
|
ClickBench: Total hot run time: 30.98 s
|
run buildall |
TPC-H: Total hot run time: 32180 ms
|
TPC-DS: Total hot run time: 184943 ms
|
ClickBench: Total hot run time: 30.73 s
|
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
run feut |
6b5ae4d
to
e240ca4
Compare
run buildall |
TPC-H: Total hot run time: 32054 ms
|
TPC-DS: Total hot run time: 190757 ms
|
ClickBench: Total hot run time: 30.32 s
|
run p0 |
What problem does this PR solve?
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:If you want to modify cache-related parameters, you can add the
paimon.
prefix to the parameters supported by paimon, such as: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.
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)