-
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
[fix](cloud-mow) Add retry when calculating delete bitmap timeout when loading data #40562
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
TPC-H: Total hot run time: 38123 ms
|
TPC-DS: Total hot run time: 192142 ms
|
ClickBench: Total hot run time: 31.24 s
|
86efeaf
to
a2fa675
Compare
run buildall |
TPC-H: Total hot run time: 38292 ms
|
TPC-DS: Total hot run time: 197246 ms
|
ClickBench: Total hot run time: 31.82 s
|
run buildall |
TPC-H: Total hot run time: 38366 ms
|
TPC-DS: Total hot run time: 192739 ms
|
TeamCity be ut coverage result: |
ClickBench: Total hot run time: 31.38 s
|
dbId, tableList, transactionId, commitInfos, getLoadJobFinalOperation()); | ||
afterLoadingTaskCommitTransaction(tableList); | ||
afterCommit(); | ||
finishJob = true; |
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.
just break instead of using finishJob.
finishJob = true; | |
finishJob = true; |
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.
use return instead of break, unlock table will do in finally code before return
run buildall |
run buildall |
TPC-H: Total hot run time: 43493 ms
|
TPC-DS: Total hot run time: 195605 ms
|
ClickBench: Total hot run time: 31.53 s
|
TeamCity be ut coverage result: |
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
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
run buildall |
fe/fe-core/src/main/java/org/apache/doris/load/loadv2/SparkLoadJob.java
Outdated
Show resolved
Hide resolved
run buildall |
TPC-H: Total hot run time: 41265 ms
|
TeamCity be ut coverage result: |
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
PR approved by at least one committer and no changes requested. |
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
…n loading data (#40562) Add retry when calculating delete bitmap timeout on broker load , like stream load doing.
Add retry when calculating delete bitmap timeout on broker load , like stream load doing.