Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Impala 1.3
-
None
-
None
Description
In PlanFragmentExecutor::OpenInternal(), the time spent in sink_->Close(runtime_state()) was not captured by the total_time_counter().
Because the Send() is async, by the time we call Close(), the data might not have sent thought yet and we might spent a considerable amount of time on Close().
This bug makes it quite difficult to diagnose network related query performance.