This is an automated email from the ASF dual-hosted git repository.
hellostephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new ddcd41155cf [chore](regression) do not hard code S3 bucket and
endpoint of hive t… (#46159)
ddcd41155cf is described below
commit ddcd41155cf994c2d50b355c253f7a24fcf1000b
Author: zgxme <[email protected]>
AuthorDate: Mon Dec 30 17:35:04 2024 +0800
[chore](regression) do not hard code S3 bucket and endpoint of hive t…
(#46159)
…esting data
---
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: [email protected]
For additional commands, e-mail: [email protected]