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

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


The following commit(s) were added to refs/heads/branch-3.1 by this push:
     new dc2a69b9e4c branch-3.1: [chore](case) add information for cases #54706 
(#54748)
dc2a69b9e4c is described below

commit dc2a69b9e4c6831b8840324c5f45bb3126088c4c
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Aug 14 17:31:37 2025 +0800

    branch-3.1: [chore](case) add information for cases #54706 (#54748)
    
    Cherry-picked from #54706
    
    Co-authored-by: Yongqiang YANG <[email protected]>
---
 .../cold_heat_separation/cold_data_compaction.groovy      | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git 
a/regression-test/suites/cold_heat_separation/cold_data_compaction.groovy 
b/regression-test/suites/cold_heat_separation/cold_data_compaction.groovy
index c80e39b8a9d..d7bc2c2625c 100644
--- a/regression-test/suites/cold_heat_separation/cold_data_compaction.groovy
+++ b/regression-test/suites/cold_heat_separation/cold_data_compaction.groovy
@@ -103,10 +103,25 @@ suite("test_cold_data_compaction", "nonConcurrent") {
     })
 
     String tabletId = sql_return_maparray("show tablets from 
t_recycle_in_s3")[0].TabletId
+
+    // get be http ip and port for tabletId
+    def tablets = sql_return_maparray("show tablets from t_recycle_in_s3")
+    def tablet = tablets.find { it.TabletId == tabletId }
+    def backendId = tablet.BackendId
+    def bes = sql_return_maparray("show backends")
+    def injectBe = bes.find { it.BackendId == backendId }
+    def (code, out, err) = be_show_tablet_status(injectBe.Host, 
injectBe.HttpPort, tabletId)
+    logger.info("Run show: code=" + code + ", out=" + out + ", err=" + err)
+
     // check number of remote files
     def filesBeforeCompaction = getS3Client().listObjects(
             new 
ListObjectsRequest().withBucketName(getS3BucketName()).withPrefix(s3Prefix + 
"/data/${tabletId}")).getObjectSummaries()
 
+    // logout files
+    logger.info("Files in S3 before compaction:")
+    filesBeforeCompaction.each { file ->
+        logger.info(" - ${file.getKey()} (size: ${file.getSize()})")
+    }
     // 5 RowSets + 1 meta
     assertEquals(6, filesBeforeCompaction.size())
 


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

Reply via email to