mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
Fix gateway docs remove redundant files (#5072)
This commit is contained in:
parent
53e133e844
commit
3d2d63f71e
@ -1,17 +0,0 @@
|
|||||||
## Minio Azure Gateway Limitations
|
|
||||||
|
|
||||||
Gateway inherits the following Azure limitations:
|
|
||||||
|
|
||||||
- No support for prefix based bucket policies. Only top level bucket policy is supported.
|
|
||||||
- Gateway restart implies all the ongoing multipart uploads must be restarted.
|
|
||||||
i.e clients must again start with NewMultipartUpload
|
|
||||||
This is because S3 clients send metadata in NewMultipartUpload but Azure expects metadata to
|
|
||||||
be set during CompleteMultipartUpload (PutBlockList in Azure terminology). We store the metadata
|
|
||||||
sent by the client during NewMultipartUpload in memory so that it can be set on Azure later during
|
|
||||||
CompleteMultipartUpload. When the gateway is restarted this information is lost.
|
|
||||||
- Bucket names with "." in the bucket name is not supported.
|
|
||||||
- Non-empty buckets get removed on a DeleteBucket() call.
|
|
||||||
|
|
||||||
Other limitations:
|
|
||||||
- Current implementation of ListMultipartUploads is incomplete. Right now it returns if the object with name "prefix" has any uploaded parts.
|
|
||||||
- Bucket notification not supported.
|
|
@ -37,7 +37,16 @@ mc ls myazure
|
|||||||
```
|
```
|
||||||
|
|
||||||
### Known limitations
|
### Known limitations
|
||||||
[Limitations](https://github.com/minio/minio/blob/master/docs/gateway/azure-limitations.md)
|
Gateway inherits the following Azure limitations:
|
||||||
|
|
||||||
|
- Only read-only bucket policy supported at bucket level, all other variations will return API Notimplemented error.
|
||||||
|
- Bucket names with "." in the bucket name are not supported.
|
||||||
|
- Non-empty buckets get removed on a DeleteBucket() call.
|
||||||
|
- _List Multipart Uploads_ and _List Object parts_ always returns empty list. i.e Client will need to remember all the parts that it has uploaded and use it for _Complete Multipart Upload_
|
||||||
|
|
||||||
|
Other limitations:
|
||||||
|
|
||||||
|
- Bucket notification APIs are not supported.
|
||||||
|
|
||||||
## Explore Further
|
## Explore Further
|
||||||
- [`mc` command-line interface](https://docs.minio.io/docs/minio-client-quickstart-guide)
|
- [`mc` command-line interface](https://docs.minio.io/docs/minio-client-quickstart-guide)
|
||||||
|
@ -4,14 +4,14 @@ Minio Gateway adds Amazon S3 compatibility to Backblaze B2 Cloud Storage.
|
|||||||
## Run Minio Gateway for Backblaze B2 Cloud Storage
|
## Run Minio Gateway for Backblaze B2 Cloud Storage
|
||||||
Please follow this [guide](https://www.backblaze.com/b2/docs/quick_account.html) to create an account on backblaze.com to obtain your access credentisals for B2 Cloud storage.
|
Please follow this [guide](https://www.backblaze.com/b2/docs/quick_account.html) to create an account on backblaze.com to obtain your access credentisals for B2 Cloud storage.
|
||||||
|
|
||||||
### Using Binary
|
### Using Docker
|
||||||
Please download the test binary for gateway B2 support https://data.minio.io:10000/minio-b2/linux-amd64/minio-b2
|
```
|
||||||
|
docker run -p 9000:9000 --name azure-s3 \
|
||||||
|
-e "MINIO_ACCESS_KEY=b2_accound_id" \
|
||||||
|
-e "MINIO_SECRET_KEY=b2_application_key" \
|
||||||
|
minio/minio:edge gateway b2
|
||||||
|
```
|
||||||
|
|
||||||
```
|
|
||||||
export MINIO_ACCESS_KEY=b2_accound_id
|
|
||||||
export MINIO_SECRET_KEY=b2_application_key
|
|
||||||
minio gateway b2
|
|
||||||
```
|
|
||||||
## Test using Minio Browser
|
## Test using Minio Browser
|
||||||
Minio Gateway comes with an embedded web based object browser. Point your web browser to http://127.0.0.1:9000 ensure your server has started successfully.
|
Minio Gateway comes with an embedded web based object browser. Point your web browser to http://127.0.0.1:9000 ensure your server has started successfully.
|
||||||
|
|
||||||
@ -35,12 +35,15 @@ mc ls myb2
|
|||||||
|
|
||||||
### Known limitations
|
### Known limitations
|
||||||
Gateway inherits the following B2 limitations:
|
Gateway inherits the following B2 limitations:
|
||||||
|
|
||||||
- No support for CopyObject S3 API (There are no equivalent APIs available on Backblaze B2).
|
- No support for CopyObject S3 API (There are no equivalent APIs available on Backblaze B2).
|
||||||
- No support for CopyObjectPart S3 API (There are no equivalent APIs available on Backblaze B2).
|
- No support for CopyObjectPart S3 API (There are no equivalent APIs available on Backblaze B2).
|
||||||
- Only read-only bucket policy supported at bucket level, all other variations will return API Notimplemented error.
|
- Only read-only bucket policy supported at bucket level, all other variations will return API Notimplemented error.
|
||||||
|
- DeleteObject() might not delete the object right away on Backblaze B2, so you might see the object immediately after a Delete request.
|
||||||
|
|
||||||
Other limitations:
|
Other limitations:
|
||||||
- Bucket notification APIs are not supported on Gateway.
|
|
||||||
|
- Bucket notification APIs are not supported.
|
||||||
|
|
||||||
## Explore Further
|
## Explore Further
|
||||||
- [`mc` command-line interface](https://docs.minio.io/docs/minio-client-quickstart-guide)
|
- [`mc` command-line interface](https://docs.minio.io/docs/minio-client-quickstart-guide)
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
## Minio GCS Gateway Limitations
|
|
||||||
|
|
||||||
Gateway inherits the following GCS limitations:
|
|
||||||
|
|
||||||
- Maximum number of parts per upload is 1024.
|
|
||||||
- No support for bucket policies yet.
|
|
||||||
- No support for bucket notifications yet.
|
|
||||||
- _List Multipart Uploads_ and _List Object parts_ always returns empty list. i.e Client will need to remember all the parts that it has uploaded and use it for _Complete Multipart Upload_
|
|
||||||
|
|
@ -53,7 +53,16 @@ mc ls mygcs
|
|||||||
```
|
```
|
||||||
|
|
||||||
### Known limitations
|
### Known limitations
|
||||||
[Limitations](https://github.com/minio/minio/blob/master/docs/gateway/gcs-limitations.md)
|
|
||||||
|
Gateway inherits the following GCS limitations:
|
||||||
|
|
||||||
|
- Maximum number of multipart parts per upload is 1024.
|
||||||
|
- Only read-only or write-only bucket policy supported at bucket level, all other variations will return API Notimplemented error.
|
||||||
|
- _List Multipart Uploads_ and _List Object parts_ always returns empty list. i.e Client will need to remember all the parts that it has uploaded and use it for _Complete Multipart Upload_
|
||||||
|
|
||||||
|
Other limitations:
|
||||||
|
|
||||||
|
- Bucket notification APIs are not supported.
|
||||||
|
|
||||||
## Explore Further
|
## Explore Further
|
||||||
- [`mc` command-line interface](https://docs.minio.io/docs/minio-client-quickstart-guide)
|
- [`mc` command-line interface](https://docs.minio.io/docs/minio-client-quickstart-guide)
|
||||||
|
Loading…
Reference in New Issue
Block a user