freemandealer commented on code in PR #52946:
URL: https://github.com/apache/doris/pull/52946#discussion_r2193949013


##########
be/src/io/cache/block_file_cache_downloader.cpp:
##########
@@ -163,19 +177,25 @@ void FileCacheBlockDownloader::download_file_cache_block(
             return;
         }
 
-        auto download_done = [&, tablet_id = meta.tablet_id()](Status) {
+        auto download_done = [&, tablet_id = meta.tablet_id()](Status st) {
             std::lock_guard lock(_inflight_mtx);
             auto it = _inflight_tablets.find(tablet_id);
             
TEST_SYNC_POINT_CALLBACK("FileCacheBlockDownloader::download_file_cache_block");
             if (it == _inflight_tablets.end()) {
                 LOG(WARNING) << "inflight ref cnt not exist, tablet id " << 
tablet_id;
             } else {
                 it->second--;
+                LOG(INFO) << "download_file_cache_block: inflight_tablets[" << 
tablet_id

Review Comment:
   这个可以不要,只要下面这个 erase 的就行。不过也应该对应改成 VLOG debug



-- 
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