This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 648bf77c72 [Fix](MemtableMemoryLimiter) fix memtable memory limiter tigger flush log (#24137) 648bf77c72 is described below commit 648bf77c722a42544df3f917d9d83458c891cc83 Author: HHoflittlefish777 <77738092+hhoflittlefish...@users.noreply.github.com> AuthorDate: Sun Sep 10 16:33:35 2023 +0800 [Fix](MemtableMemoryLimiter) fix memtable memory limiter tigger flush log (#24137) --- be/src/olap/memtable_memory_limiter.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/be/src/olap/memtable_memory_limiter.cpp b/be/src/olap/memtable_memory_limiter.cpp index 9ef9d041ad..4dc8e1c1d9 100644 --- a/be/src/olap/memtable_memory_limiter.cpp +++ b/be/src/olap/memtable_memory_limiter.cpp @@ -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 || --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org