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

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new 3a76ec22d fix(doc): add GCS api reference and known issues to 
service/s3 doc (#2949)
3a76ec22d is described below

commit 3a76ec22d3359d55ff9a5a6594079ad709454bf8
Author: Yisheng Gong <[email protected]>
AuthorDate: Sat Aug 26 18:37:38 2023 -0700

    fix(doc): add GCS api reference and known issues to service/s3 doc (#2949)
---
 core/src/services/s3/compatible_services.md | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/core/src/services/s3/compatible_services.md 
b/core/src/services/s3/compatible_services.md
index 6e7877da2..dc9af1edf 100644
--- a/core/src/services/s3/compatible_services.md
+++ b/core/src/services/s3/compatible_services.md
@@ -112,3 +112,9 @@ To connect to r2, we need to set:
 - `region`: When you create a new bucket, the data location is set to 
Automatic by default. So please use `auto` for region.
 - `batch_max_operations`: R2's delete objects will return `Internal Error` if 
the batch is larger than `700`. Please set this value `<= 700` to make sure 
batch delete work as expected.
 - `enable_exact_buf_write`: R2 requires the non-tailing parts size to be 
exactly the same. Please enable this option to avoid the error `All 
non-trailing parts must have the same length`.
+
+### Google Cloud Storage XML API
+[Google Cloud Storage XML 
API](https://cloud.google.com/storage/docs/xml-api/overview) provides s3 
compatible API.
+- `endpoint`: The endpoint of Google Cloud Storage XML API, for example: 
`https://storage.googleapis.com`
+- `bucket`: The bucket name.
+- To access GCS via S3 API, please enable `features = ["native-tls"]` in your 
`Cargo.toml` to avoid connection being reset when using `rustls`. Tracking in 
https://github.com/seanmonstar/reqwest/issues/1809
\ No newline at end of file

Reply via email to