cambyzju commented on code in PR #12897: URL: https://github.com/apache/doris/pull/12897#discussion_r983017951
########## be/src/io/cache/file_cache_manager.cpp: ########## @@ -18,15 +18,39 @@ #include "io/cache/file_cache_manager.h" #include "gutil/strings/util.h" +#include "io/cache/dummy_file_cache.h" #include "io/cache/sub_file_cache.h" #include "io/cache/whole_file_cache.h" #include "io/fs/local_file_system.h" +#include "olap/storage_engine.h" #include "util/file_utils.h" #include "util/string_util.h" namespace doris { namespace io { +void GCContextPerDisk::init(const std::string& path, int64_t max_size) { + _disk_path = path; + _conf_max_size = max_size; + _used_size = 0; +} +bool GCContextPerDisk::try_add_file_cache(FileCachePtr cache, int64_t file_size) { + if (cache->cache_dir().string().substr(0, _disk_path.size()) == _disk_path) { Review Comment: same as above -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org