Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Doris-Extras committed Oct 1, 2024
1 parent e9f30de commit 37a264b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions be/src/pipeline/pipeline_task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -392,9 +392,10 @@ Status PipelineTask::execute(bool* eos) {
COUNTER_UPDATE(_memory_reserve_times, 1);
if (!st.ok()) {
COUNTER_UPDATE(_memory_reserve_failed_times, 1);
LOG(INFO) << "query: " << print_id(query_id)
<< ", try to reserve: " << PrettyPrinter::print(reserve_size)
<< "(sink reserve size:(" << PrettyPrinter::print(sink_reserve_size)
LOG(INFO) << "query: " << print_id(query_id) << ", try to reserve: "
<< PrettyPrinter::print(reserve_size, TUnit.BYTES)
<< "(sink reserve size:("
<< PrettyPrinter::print(sink_reserve_size, TUnit.BYTES)
<< "), sink name: " << _sink->get_name()
<< ", node id: " << _sink->node_id() << " failed: " << st.to_string()
<< ", debug info: " << GlobalMemoryArbitrator::process_mem_log_str();
Expand Down

0 comments on commit 37a264b

Please sign in to comment.