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

Method DebugString

be/src/scheduling/executor-blacklist.cc:161–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

159}
160
161std::string ExecutorBlacklist::DebugString() const {
162 std::stringstream ss;
163 ss << "ExecutorBlacklist[";
164 for (auto entry_it : executor_list_) {
165 const Entry& entry = entry_it.second;
166 DCHECK(entry.state == BLACKLISTED || entry.state == ON_PROBATION);
167 ss << entry.be_desc.address() << " ("
168 << (entry.state == BLACKLISTED ? "blacklisted" : "on probation") << ") ";
169 }
170 ss << "]";
171 return ss.str();
172}
173
174int64_t ExecutorBlacklist::GetBlacklistTimeoutMs() const {
175 // We add some padding to the timeout to account for possible small, random delays in

Callers 10

PrintAssignmentMethod · 0.45
TEST_FFunction · 0.45
RemoveExecutorAndGroupFunction · 0.45
UpdateMembershipMethod · 0.45
BlacklistExecutorMethod · 0.45
CheckConsistencyMethod · 0.45
ColumnToHs2TypeMethod · 0.45
SetTColumnValueFunction · 0.45
ResolveSymbolLookupFunction · 0.45

Calls 1

strMethod · 0.45

Tested by 1

TEST_FFunction · 0.36