Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
Impala 3.4.0
-
ghx-label-10
Description
Some test runs see the coordinator Impalad hit this DCHECK:
case ExecState::FINISHED: // A query can transition from PENDING to FINISHED if it is cancelled by the // client. DCHECK(old_state == ExecState::PENDING || old_state == ExecState::RUNNING) << Substitute( error_msg, ExecStateToString(old_state), ExecStateToString(new_state)); UpdateExecState(new_state); break;
The error message is:
F1222 23:01:14.020613 10494 client-request-state.cc:951] Check failed: old_state == ExecState::PENDING || old_state == ExecState::RUNNING Illegal state transition: ERROR -> FINISHED
This happened on one exhaustive run on Centos6 and an s3 run. There doesn't seem to be a pattern, so I'm assuming this is a generic issue.
Attachments
Attachments
Issue Links
- is caused by
-
IMPALA-6894 Use an internal representation of query states in ClientRequestState
- Resolved