This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 02239e4fb2e branch-2.1: [chore](regression) do not hard code S3 bucket and endpoint of hive t… #46159 (#46169) 02239e4fb2e is described below commit 02239e4fb2e0f701ce6c171d49387723e102e0de Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Tue Dec 31 11:44:36 2024 +0800 branch-2.1: [chore](regression) do not hard code S3 bucket and endpoint of hive t… #46159 (#46169) Cherry-picked from #46159 Co-authored-by: zgxme <zhenggaoxi...@selectdb.com> --- docker/thirdparties/custom_settings.env | 2 +- docker/thirdparties/docker-compose/hive/scripts/hive-metastore.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/thirdparties/custom_settings.env b/docker/thirdparties/custom_settings.env index 17db5563d93..adae3eafbd5 100644 --- a/docker/thirdparties/custom_settings.env +++ b/docker/thirdparties/custom_settings.env @@ -22,4 +22,4 @@ # NOTICE: change this uid will modify the file in docker-compose. CONTAINER_UID="doris--" s3Endpoint="oss-cn-hongkong.aliyuncs.com" -s3BucketName="qa-build-hk" +s3BucketName="doris-regression-hk" diff --git a/docker/thirdparties/docker-compose/hive/scripts/hive-metastore.sh b/docker/thirdparties/docker-compose/hive/scripts/hive-metastore.sh index dd6d83fedf1..b9982c2ed60 100755 --- a/docker/thirdparties/docker-compose/hive/scripts/hive-metastore.sh +++ b/docker/thirdparties/docker-compose/hive/scripts/hive-metastore.sh @@ -60,7 +60,7 @@ touch "$lockfile2" if [[ ! -d "/mnt/scripts/tpch1.db" ]]; then echo "/mnt/scripts/tpch1.db does not exist" cd /mnt/scripts/ - curl -O https://doris-regression-hk.oss-cn-hongkong.aliyuncs.com/regression/datalake/pipeline_data/tpch1.db.tar.gz + curl -O https://s3BucketName.s3Endpoint/regression/datalake/pipeline_data/tpch1.db.tar.gz tar -zxf tpch1.db.tar.gz rm -rf tpch1.db.tar.gz cd - @@ -72,7 +72,7 @@ fi rm -rf "/mnt/scripts/paimon1" echo "/mnt/scripts/paimon1 does not exist" cd /mnt/scripts/ -curl -O https://doris-regression-hk.oss-cn-hongkong.aliyuncs.com/regression/datalake/pipeline_data/paimon1.tar.gz +curl -O https://s3BucketName.s3Endpoint/regression/datalake/pipeline_data/paimon1.tar.gz tar -zxf paimon1.tar.gz rm -rf paimon1.tar.gz cd - @@ -81,7 +81,7 @@ cd - if [[ ! -d "/mnt/scripts/tvf_data" ]]; then echo "/mnt/scripts/tvf_data does not exist" cd /mnt/scripts/ - curl -O https://doris-regression-hk.oss-cn-hongkong.aliyuncs.com/regression/datalake/pipeline_data/tvf_data.tar.gz + curl -O https://s3BucketName.s3Endpoint/regression/datalake/pipeline_data/tvf_data.tar.gz tar -zxf tvf_data.tar.gz rm -rf tvf_data.tar.gz cd - --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org