MCPcopy Create free account
hub / github.com/apache/impala / WasRetried

Method WasRetried

be/src/service/client-request-state.h:467–470  ·  view source on GitHub ↗

Returns true if this ClientRequestState has already been retried, e.g. the RetryState is either RETRYING or RETRIED.

Source from the content-addressed store, hash-verified

465 /// Returns true if this ClientRequestState has already been retried, e.g. the
466 /// RetryState is either RETRYING or RETRIED.
467 bool WasRetried() const {
468 RetryState retry_state = retry_state_.Load();
469 return retry_state == RetryState::RETRYING || retry_state == RetryState::RETRIED;
470 }
471
472 /// Can only be called if this query is the result of retrying a previously failed
473 /// query. Returns the query id of the original query.

Callers 4

InitMethod · 0.80
DoEndChildSpanCloseMethod · 0.80
TryQueryRetryMethod · 0.80

Calls 1

LoadMethod · 0.45

Tested by

no test coverage detected