LoginSignup
3
1

More than 5 years have passed since last update.

Minioでできないこと

Posted at

背景

S3互換のMinioを構築して、setObjectTaggingをしたところ501が出て失敗したので、理由を調べてみた。

公式issue

501になるという丁度ぴったりなissueを発見

結果

We don't support Object tagging https://docs.minio.io/docs/minio-server-limits-per-tenant.html

結論

  • 身も蓋もねえや!
  • 使うときはサポートしていないAPIを確認しましょう

サポートしていないAPI

List of Amazon S3 Bucket API's not supported on Minio

  1. BucketACL (Use bucket policies instead)
  2. BucketCORS (CORS enabled by default on all buckets for all HTTP verbs)
  3. BucketLifecycle (Not required for Minio erasure coded backend)
  4. BucketReplication (Use mc mirror instead)
  5. BucketVersions, BucketVersioning (Use s3git)
  6. BucketWebsite (Use caddy or nginx)
  7. BucketAnalytics, BucketMetrics, BucketLogging (Use bucket notification APIs)
  8. BucketRequestPayment
  9. BucketTagging

List of Amazon S3 Object API's not supported on Minio

  1. ObjectACL (Use bucket policies instead)
  2. ObjectTorrent
  3. ObjectVersions

結構多いですね・・・・

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1