Zihao Ye has uploaded this change for review. ( http://gerrit.cloudera.org:8080/20672
Change subject: IMPALA-12544: Replace scan progress with query progress as progress reporting for the shell ...................................................................... IMPALA-12544: Replace scan progress with query progress as progress reporting for the shell This patch modifies the query progress bar in impala-shell by replacing the scan progress with the query progress. The query progress is calculated using the number of completed fragment instances divided by the total number of fragment instances. This approach provides a more accurate reflection of the actual completion progress of the query compared to the scan progress, which is calculated based on the completed ScanRanges divided by the total ScanRanges. Especially for computation-intensive queries that involve complex aggregations or sorting, such as tpcds query78, there is often additional time required for computation even after the scanning is complete. In such cases, displaying 100% scan progress would be inaccurate. Change-Id: I11a704885505442b7499a026fcee3b86696cd064 --- M shell/impala_shell.py 1 file changed, 5 insertions(+), 4 deletions(-) git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/72/20672/1 -- To view, visit http://gerrit.cloudera.org:8080/20672 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-MessageType: newchange Gerrit-Change-Id: I11a704885505442b7499a026fcee3b86696cd064 Gerrit-Change-Number: 20672 Gerrit-PatchSet: 1 Gerrit-Owner: Zihao Ye <[email protected]>
