[fix](pipelinex) fix fragment instance progress reports (part 2)#40694
[fix](pipelinex) fix fragment instance progress reports (part 2)#40694gavinchou merged 4 commits intoapache:masterfrom
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. |
| // Otherwise the load progress (ScannedRows/LoadBytes) won't be updated before any instance is done. | ||
| if (!params.done) { | ||
| return false; | ||
| return true; |
There was a problem hiding this comment.
This may bring some problems here, refer to the comments above.
|
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. |
) ## 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
ScannedRowsandLoadBytesin the progress of theSHOW LOADresult.Currently the progress will only be updated when a fragment instance is done.
Timely progress updates will be supported in a later PR.