-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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](pipelinex) fix fragment instance progress reports (part 2) #40694
Conversation
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
run buildall |
TeamCity be ut coverage result: |
TPC-H: Total hot run time: 38287 ms
|
TPC-DS: Total hot run time: 197883 ms
|
ClickBench: Total hot run time: 32.2 s
|
Please add a regression test. |
if (!params.done) { | ||
return false; | ||
return 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.
This may bring some problems here, refer to the comments above.
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.
reverted
run buildall |
TPC-H: Total hot run time: 42903 ms
|
TeamCity be ut coverage result: |
TPC-DS: Total hot run time: 199620 ms
|
ClickBench: Total hot run time: 30.83 s
|
run buildall |
TeamCity be ut coverage result: |
PR approved by at least one committer and no changes requested. |
PR approved by anyone 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
) ## Proposed changes This PR is a followup of #40325. Because PipelineX has deprecated the old report. This PR fixed the `ScannedRows` and `LoadBytes` in the progress of the `SHOW LOAD` result. Currently the progress will only be updated when a fragment instance is done. Timely progress updates will be supported in a later PR.
…che#40694) This PR is a followup of apache#40325. Because PipelineX has deprecated the old report. This PR fixed the `ScannedRows` and `LoadBytes` in the progress of the `SHOW LOAD` result. Currently the progress will only be updated when a fragment instance is done. Timely progress updates will be supported in a later PR.
…che#40694) This PR is a followup of apache#40325. Because PipelineX has deprecated the old report. This PR fixed the `ScannedRows` and `LoadBytes` in the progress of the `SHOW LOAD` result. Currently the progress will only be updated when a fragment instance is done. Timely progress updates will be supported in a later PR.
Proposed changes
This PR is a followup of #40325. Because PipelineX has deprecated the old report.
This PR fixed the
ScannedRows
andLoadBytes
in the progress of theSHOW LOAD
result.Currently the progress will only be updated when a fragment instance is done.
Timely progress updates will be supported in a later PR.