xiaokang commented on code in PR #44863:
URL: https://github.com/apache/doris/pull/44863#discussion_r1875131864


##########
be/src/io/cache/cached_remote_file_reader.cpp:
##########
@@ -312,15 +312,20 @@ Status CachedRemoteFileReader::read_at_impl(size_t 
offset, Slice result, size_t*
 }
 
 void CachedRemoteFileReader::_update_state(const ReadStatistics& read_stats,
-                                           FileCacheStatistics* statis) const {
+                                           FileCacheStatistics* statis,
+                                           bool is_inverted_index) const {
     if (statis == nullptr) {
         return;
     }
     if (read_stats.hit_cache) {
         statis->num_local_io_total++;
         statis->bytes_read_from_local += read_stats.bytes_read;
     } else {
-        statis->num_remote_io_total++;
+        if (is_inverted_index) {
+            statis->num_inverted_index_remote_io_total++;

Review Comment:
   You can inc both num_remote_io_total and num_inverted_index_remote_io_total.



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

Reply via email to