Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Forbid https in GCS endpoint #52285

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
3 changes: 2 additions & 1 deletion docs/en/administration/management/Backup_and_restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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**
>
Expand Down
3 changes: 2 additions & 1 deletion docs/zh/administration/management/Backup_and_restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 中创建仓库

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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`。

> **说明**
>
Expand Down
Loading