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

Method Flush

be/src/runtime/io/data-cache-trace.cc:189–195  ·  view source on GitHub ↗

Flush any buffered messages. NOTE: declared 'final' to allow safe calls from the destructor.

Source from the content-addressed store, hash-verified

187 // Flush any buffered messages.
188 // NOTE: declared 'final' to allow safe calls from the destructor.
189 void Flush() override final {
190 Status status = logger_.Flush();
191 if (!status.ok()) {
192 LOG_EVERY_N(WARNING, 1000) << "Could not write to data cache access trace ("
193 << google::COUNTER << " attempts failed): " << status.GetDetail();
194 }
195 }
196
197 uint32 LogSize() override {
198 LOG(FATAL) << "Unimplemented";

Callers

nothing calls this directly

Calls 3

GetDetailMethod · 0.80
FlushMethod · 0.45
okMethod · 0.45

Tested by

no test coverage detected