Skip to content
Merged
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion be/src/runtime/memory/lru_cache_policy.h
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,10 @@ class LRUCachePolicy : public CachePolicy {
if (std::dynamic_pointer_cast<doris::DummyLRUCache>(_cache)) {
return 0;
}

if (!_enable_prune) {
LOG(INFO) << "[MemoryGC] " << type_string(_type)
<< " cache prune disabled, so could not adjust capacity to free memory";
}
size_t old_capacity = get_capacity();
int64_t old_mem_consumption = mem_consumption();
int64_t old_usage = get_usage();
Expand Down
Loading