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

Method MergeErrorLog

be/src/runtime/coordinator-backend-state.cc:467–471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

465}
466
467void Coordinator::BackendState::MergeErrorLog(ErrorLogMap* merged) {
468 lock_guard<mutex> l(lock_);
469 DCHECK(exec_done_) << "May only be called after WaitOnExecRpc() completes.";
470 if (error_log_.size() > 0) MergeErrorMaps(error_log_, merged);
471}
472
473bool Coordinator::BackendState::HasFragmentIdx(int fragment_idx) const {
474 return fragments_.count(fragment_idx) > 0;

Callers 1

GetErrorLogMethod · 0.80

Calls 2

MergeErrorMapsFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected