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 4436a88e362 branch-3.0: [chore](case) add information for cases #54706
(#54747)
4436a88e362 is described below
commit 4436a88e362ae7e891bbc00c4efc9f91dc77fa27
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Aug 14 22:42:15 2025 +0800
branch-3.0: [chore](case) add information for cases #54706 (#54747)
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]