2010YOUY01 commented on code in PR #19626:
URL: https://github.com/apache/datafusion/pull/19626#discussion_r2663359127
##########
datafusion/physical-plan/src/async_func.rs:
##########
@@ -182,11 +183,12 @@ impl ExecutionPlan for AsyncFuncExec {
context.session_id(),
context.task_id()
);
- // TODO figure out how to record metrics
// first execute the input stream
let input_stream = self.input.execute(partition,
Arc::clone(&context))?;
+ let baseline_metrics = BaselineMetrics::new(&self.metrics, partition);
Review Comment:
```suggestion
// TODO: Track `elapsed_compute` in `BaselineMetrics`
// Issue: <https://github.com/apache/datafusion/issues/19658>
let baseline_metrics = BaselineMetrics::new(&self.metrics,
partition);
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]