Skip to content

Commit

Permalink
Add Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
l0wl3vel committed Jan 9, 2024
1 parent 9d262da commit 3d4f392
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/en/reference/how_to_set_up_object_storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ If you wish to use a storage system that is not listed, feel free to submit a re
| [Storj DCS](#storj-dcs) | `s3` |
| [Vultr Object Storage](#vultr-object-storage) | `s3` |
| [Cloudflare R2](#r2) | `s3` |
| [Bunny Storage](#bunny) | `bunny` |
| [Alibaba Cloud OSS](#alibaba-cloud-oss) | `oss` |
| [Tencent Cloud COS](#tencent-cloud-cos) | `cos` |
| [Huawei Cloud OBS](#huawei-cloud-obs) | `obs` |
Expand Down Expand Up @@ -502,6 +503,22 @@ juicefs format \
Cloudflare R2 `ListObjects` API is not fully S3 compatible (result list is not sorted), so some features of JuiceFS do not work. For example, `juicefs gc`, `juicefs fsck`, `juicefs sync`, `juicefs destroy`. And when using `juicefs mount`, you need to disable [automatic-backup](../administration/metadata_dump_load.md#backup-automatically) function by adding `--backup-meta 0`.
:::

### Bunny Storage {#bunny}

Bunny Storage offers a non-S3 compatible object storage with multiple performance tiers and many storage regions. It uses [it uses a custom API](https://docs.bunny.net/reference/storage-api).

#### Usage:

Create a Storage Zone and use the Zone Name with the Hostname of the Location seperated by a dot as Bucket name and the `Write Password` as Secret Key.

```shell
juicefs format \
--storage bunny \
--secret-key "write-password" \
--bucket "juicefs.uk.storage.bunnycdn.com" \ # <Zonename>.<Hostname>
myjfs
```

### Alibaba Cloud OSS

Please follow [this document](https://www.alibabacloud.com/help/doc-detail/125558.htm) to learn how to get access key and secret key. If you have already created [RAM role](https://www.alibabacloud.com/help/doc-detail/110376.htm) and assigned it to a VM instance, you could omit the options `--access-key` and `--secret-key`.
Expand Down

0 comments on commit 3d4f392

Please sign in to comment.