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

dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 8a1f679fc81 [fix](warmup) fix show warm up tables (#53406)
8a1f679fc81 is described below

commit 8a1f679fc8103f81d50b6748459b43722f60fea6
Author: Kaijie Chen <[email protected]>
AuthorDate: Fri Jul 18 14:26:57 2025 +0800

    [fix](warmup) fix show warm up tables (#53406)
    
    ### What problem does this PR solve?
    
    Related PR: #52291 #52514
    
    Problem Summary:
    
    Fix show warm up jobs after merging periodic and event driven warmup
    feature.
---
 .../src/main/java/org/apache/doris/cloud/CacheHotspotManager.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/cloud/CacheHotspotManager.java 
b/fe/fe-core/src/main/java/org/apache/doris/cloud/CacheHotspotManager.java
index 6797ce45acb..417f1b8d233 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/cloud/CacheHotspotManager.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/cloud/CacheHotspotManager.java
@@ -785,8 +785,8 @@ public class CacheHotspotManager extends MasterDaemon {
                                                             stmt.isForce());
             }
             Map<Long, List<List<Long>>> beToTabletIdBatches = 
splitBatch(beToWarmUpTablets);
-            warmUpJob = new CloudWarmUpJob(jobId, null, 
stmt.getDstClusterName(),
-                    beToTabletIdBatches, JobType.TABLE);
+            warmUpJob = new CloudWarmUpJob(jobId, stmt.getDstClusterName(),
+                    beToTabletIdBatches, JobType.TABLE, stmt.getTables(), 
stmt.isForce());
         } else {
             CloudWarmUpJob.Builder builder = new CloudWarmUpJob.Builder()
                     .setJobId(jobId)


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

Reply via email to