This is an automated email from the ASF dual-hosted git repository. sewen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit 4dae94d952958858af722c6285398bc6402708e4 Author: Seth Wiesman <[email protected]> AuthorDate: Tue Apr 30 16:52:25 2019 -0500 [FLINK-8513][docs] Add documentation for connecting to non-AWS S3 endpoints --- docs/ops/filesystems/s3.md | 9 ++++++++- docs/ops/filesystems/s3.zh.md | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/ops/filesystems/s3.md b/docs/ops/filesystems/s3.md index 9ae1476..4efcca2 100644 --- a/docs/ops/filesystems/s3.md +++ b/docs/ops/filesystems/s3.md @@ -103,7 +103,14 @@ s3.access-key: your-access-key s3.secret-key: your-secret-key {% endhighlight %} -{% top %} +## Configure Non-S3 Endpoint + +The S3 Filesystems also support using S3 compliant object stores such as [IBM's Cloud Object Storage](https://www.ibm.com/cloud/object-storage) and [Minio](https://min.io/). +To do so, simply configure your endpoint in `flink-conf.yaml`. + +{% highlight yaml %} +s3.endpoint: your-endpoint-hostname +{% endhighlight %} ## Entropy injection for S3 file systems diff --git a/docs/ops/filesystems/s3.zh.md b/docs/ops/filesystems/s3.zh.md index 9ae1476..4efcca2 100644 --- a/docs/ops/filesystems/s3.zh.md +++ b/docs/ops/filesystems/s3.zh.md @@ -103,7 +103,14 @@ s3.access-key: your-access-key s3.secret-key: your-secret-key {% endhighlight %} -{% top %} +## Configure Non-S3 Endpoint + +The S3 Filesystems also support using S3 compliant object stores such as [IBM's Cloud Object Storage](https://www.ibm.com/cloud/object-storage) and [Minio](https://min.io/). +To do so, simply configure your endpoint in `flink-conf.yaml`. + +{% highlight yaml %} +s3.endpoint: your-endpoint-hostname +{% endhighlight %} ## Entropy injection for S3 file systems
