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

Method UnregisterSessionTimeout

be/src/service/impala-server.cc:2956–2963  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2954}
2955
2956void ImpalaServer::UnregisterSessionTimeout(int32_t session_timeout) {
2957 if (session_timeout > 0) {
2958 lock_guard<mutex> l(session_timeout_lock_);
2959 auto itr = session_timeout_set_.find(session_timeout);
2960 DCHECK(itr != session_timeout_set_.end());
2961 session_timeout_set_.erase(itr);
2962 }
2963}
2964
2965[[noreturn]] void ImpalaServer::SessionMaintenance() {
2966 while (true) {

Callers 1

UpdateTimeoutMethod · 0.80

Calls 3

eraseMethod · 0.80
findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected