yiguolei commented on code in PR #66328:
URL: https://github.com/apache/doris/pull/66328#discussion_r3701511093


##########
be/src/exec/spill/spill_file_manager.cpp:
##########
@@ -162,6 +196,17 @@ void SpillFileManager::delete_spill_file(SpillFileSPtr 
spill_file) {
     spill_file->gc();
 }
 
+void SpillFileManager::delete_empty_query_spill_directory(const std::string& 
query_id,
+                                                          SpillDataDir* 
data_dir) {
+    const auto query_dir = data_dir->get_spill_data_path(query_id);
+    auto status = delete_empty_directory_tree(query_dir);
+    if (!status.ok()) {
+        LOG_EVERY_T(WARNING, 1) << fmt::format(

Review Comment:
   这里面为什么是log every??? 不是每次失败都打印?



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to