Exclude input plan's execution time from elapsed_compute
statistic
#3494
Labels
enhancement
New feature or request
elapsed_compute
statistic
#3494
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Baseline metrics have an
elapsed_compute
timer that counts the CPU time of one physical plan. It should not include the time that polling from inputs.Describe the solution you'd like
I find these plans have the issue:
CoalesceBatchesExec
SortMergeJoinExec
I'll move the timer after the input record batch is ready.
Additional context
An example I got:
Here
CoalesceBatchesExec
takes ~70ms. It includes the child node's execution time.The text was updated successfully, but these errors were encountered: