This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new 431a97b57da branch-4.0: [feat](test) Support recycler progress for
docker test #59480 (#59522)
431a97b57da is described below
commit 431a97b57da72e42f921b15aac8ff357102b00ea
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jan 5 11:49:25 2026 +0800
branch-4.0: [feat](test) Support recycler progress for docker test #59480
(#59522)
Cherry-picked from #59480
Co-authored-by: Yixuan Wang <[email protected]>
---
docker/runtime/doris-compose/cluster.py | 1 +
.../main/groovy/org/apache/doris/regression/suite/SuiteCluster.groovy | 4 ++++
2 files changed, 5 insertions(+)
diff --git a/docker/runtime/doris-compose/cluster.py
b/docker/runtime/doris-compose/cluster.py
index b54a9a413d3..bfa8eb65a4c 100644
--- a/docker/runtime/doris-compose/cluster.py
+++ b/docker/runtime/doris-compose/cluster.py
@@ -759,6 +759,7 @@ class MS(CLOUD):
envs = super().docker_env()
for key, value in self.cluster.cloud_store_config.items():
envs[key] = value
+ envs['DORIS_CLOUD_PREFIX'] = 'doris_docker_env_' + self.cluster.name
return envs
diff --git
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/SuiteCluster.groovy
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/SuiteCluster.groovy
index cb9c34b064a..ef8805f737c 100644
---
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/SuiteCluster.groovy
+++
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/SuiteCluster.groovy
@@ -39,6 +39,7 @@ class ClusterOptions {
int feNum = 1
int beNum = 3
int msNum = 1
+ int recyclerNum = 1
Boolean sqlModeNodeMgr = false
Boolean beMetaServiceEndpoint = true
@@ -324,6 +325,9 @@ class SuiteCluster {
if (options.msNum > 0) {
cmd += ['--add-ms-num', String.valueOf(options.msNum)]
}
+ if (options.recyclerNum > 0) {
+ cmd += ['--add-recycle-num', String.valueOf(options.recyclerNum)]
+ }
// TODO: need escape white space in config
if (!options.feConfigs.isEmpty()) {
cmd += ['--fe-config']
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]