wenzhenghu opened a new issue, #49682: URL: https://github.com/apache/doris/issues/49682
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version master ### What's Wrong? in void FileCacheBlockDownloader::polling_download_task() { if (std::chrono::duration_cast<std::chrono::seconds>(std::chrono::steady_clock::now() - task.atime) .count() < hot_interval) { auto st = _workers->submit_func( [this, task_ = std::move(task)]() mutable { download_blocks(task_); }); if (!st.ok()) { LOG(WARNING) << "submit download blocks failed: " << st; } } nothing done if the task had created 2 hours ago, it means ` if (std::chrono::duration_cast<std::chrono::seconds>(std::chrono::steady_clock::now() - task.atime).count() >= hot_interval) ` case if it is a file cache block task, _inflight_tablets[meta.tablet_id()] will never be zero ### What You Expected? if the task had created 2 hours ago: - should have a warning/error log - handle _inflight_tablets[meta.tablet_id()] or do retry? ### How to Reproduce? _No response_ ### Anything Else? _No response_ ### Are you willing to submit PR? - [x] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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.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