HyukjinKwon commented on code in PR #45150:
URL: https://github.com/apache/spark/pull/45150#discussion_r1494101505


##########
connector/connect/common/src/main/protobuf/spark/connect/base.proto:
##########
@@ -420,6 +423,15 @@ message ExecutePlanResponse {
     // the execution is complete. If the server sends onComplete without 
sending a ResultComplete,
     // it means that there is more, and the client should use ReattachExecute 
RPC to continue.
   }
+
+  // This message is used to communicate progress about the query progress 
during the execution.
+  message ExecutionProgress {
+    int64 num_tasks = 1;
+    int64 num_completed_tasks = 2;
+    int64 num_stages = 3;
+    int64 num_completed_stages = 4;

Review Comment:
   We're carrying the state and task information but I can't see in the PR 
description example. How are they displayed?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to