File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
docker/runtime/doris-compose
regression-test/framework/src/main/groovy/org/apache/doris/regression/suite Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -841,6 +841,7 @@ def docker_env(self):
841841 envs ["INSTANCE_ID" ] = self .cluster .instance_id
842842 for key , value in self .cluster .cloud_store_config .items ():
843843 envs [key ] = value
844+ envs ['DORIS_CLOUD_PREFIX' ] = 'doris_docker_env_' + self .cluster .name
844845 return envs
845846
846847
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ class ClusterOptions {
3939 int feNum = 1
4040 int beNum = 3
4141 int msNum = 1
42+ int recyclerNum = 1
4243
4344 Boolean sqlModeNodeMgr = false
4445 Boolean beMetaServiceEndpoint = true
@@ -343,6 +344,9 @@ class SuiteCluster {
343344 if (options. msNum > 0 ) {
344345 cmd + = [' --add-ms-num' , String . valueOf(options. msNum)]
345346 }
347+ if (options. recyclerNum > 0 ) {
348+ cmd + = [' --add-recycle-num' , String . valueOf(options. recyclerNum)]
349+ }
346350 // TODO: need escape white space in config
347351 if (! options. feConfigs. isEmpty()) {
348352 cmd + = [' --fe-config' ]
You can’t perform that action at this time.
0 commit comments