This is an automated email from the ASF dual-hosted git repository.

starocean999 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 4a45bcbc1a5 [fix](doris compose) fix create storage vault fail (#59553)
4a45bcbc1a5 is described below

commit 4a45bcbc1a564e96bf312760a5e0ecc8c0db7d44
Author: yujun <[email protected]>
AuthorDate: Mon Jan 5 16:48:14 2026 +0800

    [fix](doris compose) fix create storage vault fail (#59553)
    
    ```
    MySQL [email protected]:db1>             CREATE STORAGE VAULT IF NOT EXISTS 
default_vault
                           ->             PROPERTIES (
                           ->                 "type" = "S3",
                           ->                 "s3.access_key" = 
"AKIDsZHqgyhDSRBpDONtHPHua6MRUN0Wnpci",
                           ->                 "s3.secret_key" = 
"0kOmumPnwpSr2ye6KSQ9cpmS4XN4VtDJ",
                           ->                 "s3.endpoint" = 
"cos.ap-hongkong.myqcloud.com",
                           ->                 "s3.bucket" = 
"gavin-test-hk-1308700295",
                           ->                 "s3.region" = "ap-hongkong",
                           ->                 "s3.root.path" = 
"2737cb44-71d7-42c5-a553-93431ac23496",
                           ->                 "provider" = "COS",
                           ->                 "use_path_style" = "false"
                           ->             );
                           ->
    
    (1105, 'errCode = 2, detailMessage = pingS3 failed(put), please check your 
endpoint, ak/sk or permissions(put/head/delete/list/multipartUpload), status: 
[COMMON_ERROR, msg: connect to s3 failed: java.net.SocketTimeoutException: Read 
timed out], properties: "s3.region" = "ap-hongkong", "s3.endpoint" = 
"http://cos.ap-hongkong.myqcloud.com";, "provider" = "COS", "s3.secret_key" = 
"*XXX", "s3.access_key" = "*XXX", "s3.bucket" = "gavin-test-hk-1308700295", 
"use_path_style" = "false", "type" [...]
    ```
---
 docker/runtime/doris-compose/database.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docker/runtime/doris-compose/database.py 
b/docker/runtime/doris-compose/database.py
index 53bd9c92785..6c4b0bd18af 100644
--- a/docker/runtime/doris-compose/database.py
+++ b/docker/runtime/doris-compose/database.py
@@ -184,6 +184,7 @@ class DBManager(object):
                 "s3.region" = "{cloud_store_config['DORIS_CLOUD_REGION']}",
                 "s3.root.path" = "{str(uuid.uuid4())}",
                 "provider" = "{cloud_store_config['DORIS_CLOUD_PROVIDER']}",
+                "s3_validity_check" = "false",
                 "use_path_style" = "false"
             );
             """


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to