Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/runtime/doris-compose/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,7 @@ def docker_env(self):
envs["INSTANCE_ID"] = self.cluster.instance_id
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


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class ClusterOptions {
int feNum = 1
int beNum = 3
int msNum = 1
int recyclerNum = 1

Boolean sqlModeNodeMgr = false
Boolean beMetaServiceEndpoint = true
Expand Down Expand Up @@ -343,6 +344,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']
Expand Down