diff --git a/docs/en/administration/management/Backup_and_restore.md b/docs/en/administration/management/Backup_and_restore.md index f3b3ff2a0e487..e96566eefdf20 100644 --- a/docs/en/administration/management/Backup_and_restore.md +++ b/docs/en/administration/management/Backup_and_restore.md @@ -105,7 +105,8 @@ PROPERTIES( > **NOTE** > -> StarRocks supports creating repositories in Google GCS only according to the S3A protocol. Therefore, when you create repositories in Google GCS, you must replace the prefix in the GCS URI you pass as a repository location in `ON LOCATION` with `s3a://`. +> - StarRocks supports creating repositories in Google GCS only according to the S3A protocol. Therefore, when you create repositories in Google GCS, you must replace the prefix in the GCS URI you pass as a repository location in `ON LOCATION` with `s3a://`. +> - Do not specify `https` in the endpoint address. After the repository is created, you can check the repository via [SHOW REPOSITORIES](../../sql-reference/sql-statements/backup_restore/SHOW_REPOSITORIES.md). After restoring data, you can delete the repository in StarRocks using [DROP REPOSITORY](../../sql-reference/sql-statements/backup_restore/DROP_REPOSITORY.md). However, data snapshots backed up in the remote storage system cannot be deleted through StarRocks. You need to delete them manually in the remote storage system. diff --git a/docs/en/sql-reference/sql-functions/table-functions/files.md b/docs/en/sql-reference/sql-functions/table-functions/files.md index bc5a1066bbed6..a6c04dd92da08 100644 --- a/docs/en/sql-reference/sql-functions/table-functions/files.md +++ b/docs/en/sql-reference/sql-functions/table-functions/files.md @@ -217,7 +217,7 @@ StarRocks currently supports accessing HDFS with the simple authentication, acce | ----------------- | ------------ | ------------------------------------------------------------ | | fs.s3a.access.key | Yes | The Access Key ID that you can use to access the GCS bucket. | | fs.s3a.secret.key | Yes | The Secret Access Key that you can use to access the GCS bucket.| - | fs.s3a.endpoint | Yes | The endpoint that you can use to access the GCS bucket. Example: `storage.googleapis.com`. | + | fs.s3a.endpoint | Yes | The endpoint that you can use to access the GCS bucket. Example: `storage.googleapis.com`. Do not specify `https` in the endpoint address. | - Use Shared Key to access Azure Blob Storage: diff --git a/docs/en/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md b/docs/en/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md index 3fc4854bbee61..2ed073510dae9 100644 --- a/docs/en/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md +++ b/docs/en/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md @@ -60,7 +60,7 @@ StarRocks supports creating repositories in HDFS, AWS S3, and Google GCS. - For Google GCS: - "fs.s3a.access.key": The Access Key that you can use to access the Google GCS bucket. - "fs.s3a.secret.key": The Secret Key that you can use to access the Google GCS bucket. - - "fs.s3a.endpoint": The endpoint that you can use to access the Google GCS bucket. + - "fs.s3a.endpoint": The endpoint that you can use to access the Google GCS bucket. Do not specify `https` in the endpoint address. > **NOTE** > diff --git a/docs/zh/administration/management/Backup_and_restore.md b/docs/zh/administration/management/Backup_and_restore.md index 120f65fa4b4f3..589741339b47e 100644 --- a/docs/zh/administration/management/Backup_and_restore.md +++ b/docs/zh/administration/management/Backup_and_restore.md @@ -108,7 +108,8 @@ PROPERTIES( > **说明** > -> StarRocks 仅支持通过 S3A 协议在 Google GCS 中创建仓库。 因此,当您在 Google GCS 中创建仓库时,必须在 `ON LOCATION` 参数下将 GCS URI 的前缀替换为 `s3a://`。 +> - StarRocks 仅支持通过 S3A 协议在 Google GCS 中创建仓库。 因此,当您在 Google GCS 中创建仓库时,必须在 `ON LOCATION` 参数下将 GCS URI 的前缀替换为 `s3a://`。 +> - 请勿在 Endpoint 地址中指定 `https`。 - 在阿里云 OSS 中创建仓库 diff --git a/docs/zh/sql-reference/sql-functions/table-functions/files.md b/docs/zh/sql-reference/sql-functions/table-functions/files.md index fd65f263a4c51..a4e5b3c5905cc 100644 --- a/docs/zh/sql-reference/sql-functions/table-functions/files.md +++ b/docs/zh/sql-reference/sql-functions/table-functions/files.md @@ -217,7 +217,7 @@ StarRocks 当前仅支持通过简单认证访问 HDFS 集群,通过 IAM User | ----------------- | -------- | -------------------------------------------------------- | | fs.s3a.access.key | 是 | 用于指定访问 GCS 存储空间的 Access Key。 | | fs.s3a.secret.key | 是 | 用于指定访问 GCS 存储空间的 Secret Key。 | - | fs.s3a.endpoint | 是 | 用于指定需访问的 GCS 存储空间的 Endpoint,如 `storage.googleapis.com`。 | + | fs.s3a.endpoint | 是 | 用于指定需访问的 GCS 存储空间的 Endpoint,如 `storage.googleapis.com`。请勿在 Endpoint 地址中指定 `https`。 | - 如果您使用 Shared Key 访问 Azure Blob Storage: diff --git a/docs/zh/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md b/docs/zh/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md index 7e36432a9425e..8e0e91da2153b 100644 --- a/docs/zh/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md +++ b/docs/zh/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md @@ -61,7 +61,7 @@ StarRocks 支持在 HDFS、AWS S3、Google GCS、阿里云 OSS 以及腾讯云 C - GCS: - "fs.s3a.access.key":访问 Google GCS 存储空间的 Access Key。 - "fs.s3a.secret.key":访问 Google GCS 存储空间的 Secret Key。 - - "fs.s3a.endpoint":访问 Google GCS 存储空间的连接地址。 + - "fs.s3a.endpoint":访问 Google GCS 存储空间的连接地址。请勿在 Endpoint 地址中指定 `https`。 > **说明** >