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

Method GetErrorLog

be/src/runtime/coordinator.cc:1497–1505  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1495}
1496
1497string Coordinator::GetErrorLog() {
1498 DCHECK(exec_rpcs_complete_.Load()) << "Exec() must be called first";
1499 ErrorLogMap merged;
1500 {
1501 lock_guard<SpinLock> l(backend_states_init_lock_);
1502 for (BackendState* state: backend_states_) state->MergeErrorLog(&merged);
1503 }
1504 return PrintErrorMapToString(merged);
1505}
1506
1507void Coordinator::ReleaseExecResources() {
1508 lock_guard<shared_mutex> lock(filter_routing_table_->lock); // Exclusive lock.

Callers 3

GetLogMethod · 0.80
UpdateExecSummaryMethod · 0.80
get_logMethod · 0.80

Calls 3

PrintErrorMapToStringFunction · 0.85
MergeErrorLogMethod · 0.80
LoadMethod · 0.45

Tested by

no test coverage detected