Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion be/src/olap/memtable_memory_limiter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ void MemTableMemoryLimiter::handle_memtable_flush() {
while (_should_wait_flush) {
_wait_flush_cond.wait(l);
}
LOG(INFO) << "Reached the load hard limit " << _load_hard_mem_limit
LOG(INFO) << "Reached the one tenth of load hard limit " << _load_hard_mem_limit / 10
<< "and process remaining allocator cache " << proc_mem_no_allocator_cache
<< "reached process soft memory limit " << process_soft_mem_limit
<< ", waited for flush, time_ns:" << timer.elapsed_time();
#ifndef BE_TEST
bool hard_limit_reached = _mem_tracker->consumption() >= _load_hard_mem_limit ||
Expand Down