This is an automated email from the ASF dual-hosted git repository.

gavinchou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f2c6ed2036 [fix](filecache) fix observation bug in multi-BE cluster 
(#59259)
9f2c6ed2036 is described below

commit 9f2c6ed20364db727e7d1c299d862d8ad4b344e2
Author: zhengyu <[email protected]>
AuthorDate: Thu Dec 25 10:53:24 2025 +0800

    [fix](filecache) fix observation bug in multi-BE cluster (#59259)
    
    BE_ID column should be in partition column list otherwise results from
    all BE won't be merged and thus provides flickering results.
---
 .../java/org/apache/doris/planner/BackendPartitionedSchemaScanNode.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/planner/BackendPartitionedSchemaScanNode.java
 
b/fe/fe-core/src/main/java/org/apache/doris/planner/BackendPartitionedSchemaScanNode.java
index 042dc5e4851..f7610480efa 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/planner/BackendPartitionedSchemaScanNode.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/planner/BackendPartitionedSchemaScanNode.java
@@ -70,6 +70,7 @@ public class BackendPartitionedSchemaScanNode extends 
SchemaScanNode {
         BEACKEND_ID_COLUMN_SET.add("be_id");
 
         BACKEND_TABLE.add("file_cache_statistics");
+        BACKEND_TABLE.add("file_cache_info");
         BACKEND_TABLE.add("backend_kerberos_ticket_cache");
 
         BACKEND_TABLE.add("backend_tablets");


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

Reply via email to