Details
-
Sub-task
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
Impala 2.8.0
-
None
-
None
Description
Coordinator::GetNext() calls WaitForAllInstances() (previously WaitForAllBackends()) when it finishes pulling the last batch. This puts fragment instance lifecycle management on the critical path to retrieve results, which doesn't make a lot of sense - the client should get notified that the query has returned all results without having to wait for every fragment instance to finish.
We should move that call to TearDown() instead. The reason that this is a little tricky is because TearDown() currently happens after the containing QueryExecState has been removed from the Impala server's exec state map. Once that's happened, fragment status reports can't get to the Coordinator, so WaitForAllInstances() would wait forever.
This JIRA is to fix both issues at once - calling TearDown() before deregistration to ensure fragments may be waited for, and to remove waiting from the GetNext() path.
Attachments
Issue Links
- blocks
-
IMPALA-4333 Crash in PlanRootSink::GetNext()
-
- Resolved
-
- relates to
-
IMPALA-9380 Serialize query profile asynchronously
-
- Resolved
-