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

Method SetRemoteSubmitTime

be/src/service/client-request-state.cc:232–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230}
231
232void ClientRequestState::SetRemoteSubmitTime(int64_t remote_submit_time) {
233 int64_t ack_submit_time = min(MonotonicStopWatch::Now(), remote_submit_time);
234 if (ack_submit_time < remote_submit_time) {
235 VLOG_QUERY << "Ignoring remote_submit_time (" << remote_submit_time
236 << " ns) that is more than coordinator time (" << ack_submit_time
237 << " ns) for query id=" << PrintId(query_id());
238 }
239 query_events_->Start(ack_submit_time);
240}
241
242void ClientRequestState::SetFrontendProfile(const TExecRequest& exec_request) {
243 // Should we defer creating and adding the child until here? probably.

Callers 1

ExecuteInternalMethod · 0.80

Calls 3

minFunction · 0.85
PrintIdFunction · 0.85
StartMethod · 0.45

Tested by

no test coverage detected