S3 Compatibility

The Storj S3-compatible Gateway supports a RESTful API that is compatible with the basic data access model of the Amazon S3 API.

Compatibility Table

NameSupportPlanned supportCaveats
AbortMultipartUploadFull
CompleteMultipartUploadFull
CopyObjectFull
CreateBucketFull
CreateMultipartUploadFull
DeleteBucketFull
DeleteBucketAnalyticsConfigurationNoNo
DeleteBucketCorsNoNo
DeleteBucketEncryptionNoNo
DeleteBucketIntelligentTieringConfigurationNoNo
DeleteBucketInventoryConfigurationNoNo
DeleteBucketLifecycleNoNo
DeleteBucketMetricsConfigurationNoNo
DeleteBucketOwnershipControlsNoNo
DeleteBucketPolicyNoNo
DeleteBucketReplicationNoNo
DeleteBucketTaggingNoWe could support this
DeleteBucketWebsiteNoNo
DeleteObjectFull
DeleteObjectTaggingFullTags can be modified outside of tagging endpoints
DeleteObjectsFull
DeletePublicAccessBlockNoNo
GetBucketAccelerateConfigurationNoNo
GetBucketAclNoNo
GetBucketAnalyticsConfigurationNoNo
GetBucketCorsNoNo
GetBucketEncryptionNoNo
GetBucketIntelligentTieringConfigurationNoNo
GetBucketInventoryConfigurationNoNo
GetBucketLifecycle (deprecated)NoWe could partially support this
GetBucketLifecycleConfigurationNoWe could partially support this
GetBucketLocationFullSee GetBucketLocation section
GetBucketLoggingNoNo
GetBucketMetricsConfigurationNoNo
GetBucketNotification (deprecated)NoNo
GetBucketNotificationConfigurationNoNo
GetBucketOwnershipControlsNoNo
GetBucketPolicyPartialOnly in Gateway-ST with --website
GetBucketPolicyStatusNoWe could support thisCurrently, it always returns false
GetBucketReplicationNoNo
GetBucketRequestPaymentNoNoPlanned support status needs verification
GetBucketTaggingNoWe could support this
GetBucketVersioningNoPlanned. See https://github.com/storj/roadmap/issues/23
GetBucketWebsiteNoNo
GetObjectPartialWe need to add support for the partNumber parameter
GetObjectAclNoNo
GetObjectLegalHoldNoNo
GetObjectLockConfigurationNoNo
GetObjectRetentionNoNo
GetObjectTaggingFullTags can be modified outside of tagging endpoints
GetObjectTorrentNoWith significant effort, we could support this
GetPublicAccessBlockNoNo
HeadBucketFull
HeadObjectFull
ListBucketAnalyticsConfigurationsNoNo
ListBucketIntelligentTieringConfigurationsNoNo
ListBucketInventoryConfigurationsNoNo
ListBucketMetricsConfigurationsNoNo
ListBucketsFull
ListMultipartUploadsPartialWe may support lexicographical ordering in the futureSee ListMultipartUploads section
ListObjectVersionsNoPlanned. See https://github.com/storj/roadmap/issues/23
ListObjectsPartialWe may support lexicographical ordering in the futureSee ListObjects section
ListObjectsV2PartialWe may support lexicographical ordering in the futureSee ListObjects section
ListPartsFull
PutBucketAccelerateConfigurationNoNo
PutBucketAclNoNo
PutBucketAnalyticsConfigurationNoNo
PutBucketCorsNoNo
PutBucketEncryptionNoNo
PutBucketIntelligentTieringConfigurationNoNo
PutBucketInventoryConfigurationNoNo
PutBucketLifecycle (deprecated)NoNo
PutBucketLifecycleConfigurationNoNo
PutBucketLoggingNoNo
PutBucketMetricsConfigurationNoNo
PutBucketNotification (deprecated)NoNo
PutBucketNotificationConfigurationNoNo
PutBucketOwnershipControlsNoNo
PutBucketPolicyNoNo
PutBucketReplicationNoNo
PutBucketRequestPaymentNoNoPlanned support status needs verification
PutBucketTaggingNoWe could support this
PutBucketVersioningNoPlanned. See https://github.com/storj/roadmap/issues/23
PutBucketWebsiteNoNo
PutObjectFull
PutObjectAclNoNo
PutObjectLegalHoldNoNo
PutObjectLockConfigurationNoNo
PutObjectRetentionNoNo
PutObjectTaggingFullTags can be modified outside of tagging endpoints
PutPublicAccessBlockNoNo
RestoreObjectNoNo
SelectObjectContentNoNo
UploadPartFull
UploadPartCopyNoPartial support planned. See https://github.com/storj/roadmap/issues/76
WriteGetObjectResponseNoNo

Compatibility Table Support/Caveats

Definitions

Full compatibility

Full compatibility means that we support all features of a specific action except for features that rely on other actions that we haven't fully implemented.

GetBucketLocation

This is currently supported in Gateway-MT only.

LocationConstraint

Specifies the placement region where the object data for a bucket is stored:

ValueDescription
globalStored on nodes connected to the global public network
us-select-1Stored on infrastructure located in SOC 2 Type 2 certified facilities located in the continental United States of America

Partial compatibility

Partial compatibility means that we don't support all features of a specific action (see Caveats column).

ListObjects

A bucket's paths are end-to-end encrypted. We don't use an ordering-preserving encryption scheme yet, meaning that it's impossible to always list a bucket in lexicographical order (as per S3 specification). For requests that come with forward-slash-terminated prefix and/or forward-slash delimiter, we list in the fastest way we can, which will list a bucket in lexicographical order, but for encrypted paths (which is often very different from the expected order for decrypted paths). Ideally, clients shouldn't care about ordering in those cases. For requests that come with non-forward-slash-terminated prefix and/or non-forward-slash delimiter, we perform exhaustive listing, which will filter paths gateway-side. In this case, gateways return listing in lexicographical order. Forcing exhaustive listing for any request is not possible for Storj production deployments of Gateway-MT, and for, e.g. Gateway-ST can be achieved with --s3.fully-compatible-listing.

ListMultipartUploads

This endpoint has the same ordering characteristics as ListObjects described above, in that lexicographic ordering works on encrypted upload paths, not the decrypted uploads paths. It also only supports prefixes that contain a trailing forward-slash, as well as a forward-slash delimiter. An exhaustive search similar to what ListObjects does with arbitrary prefixes and delimiters is not supported.

UploadIdMarker and NextUploadIdMarker are not supported. This is used to filter out uploads that come before the given upload ID marker. This is tracked at storj/gateway-mt#213

Secure access control in the decentralized cloud is a good read for why we don't support ACL-related actions.

Limits

LimitSpecification
Maximum number of buckets100
Maximum number of objects per bucketNo limit
Maximum object sizeNo limit
Minimum object size0 B
Maximum object size per PUT operationNo limit
Maximum number of parts per upload10000
Minimum part size5 MiB. Last part can be 0 B
Maximum number of parts returned per list parts request10000
Maximum number of objects returned per list objects request1000
Maximum number of multipart uploads returned per list multipart uploads request1000
Maximum length for bucket names63
Minimum length for bucket names3
Maximum length for encrypted object names1280
Maximum metadata size2 KiB

S3-compatible clients configuration for objects larger than 5 TiB

AWS S3 limits users to upload objects no larger than 5 TiB. Edge services at Storj don't impose such a limit, but the existence of the limit in AWS S3 requires users to tweak their client's configuration to be able to upload larger objects.

This example is specific to AWS CLI, but your particular S3-compatible client might carry a need for a similar configuration.

A multipart upload requires that a single object is uploaded in not more than 10000 distinct parts. You must ensure that the chunk size you set balances the part size and the number of parts.

For example, for 6 TiB objects, you need to set AWS CLI's multipart_chunksize to approximately 630 MiB:

$ aws --profile storj configure set s3.multipart_chunksize 630MiB
$ aws --profile storj --endpoint-url https://gateway.storjshare.io s3 cp 6TiB_file s3://objects/
$ aws --profile storj configure set s3.multipart_chunksize 630MiB
$ aws --profile storj --endpoint-url https://gateway.storjshare.io s3 cp 6TiB_file s3://objects/

Storj-specific extensions

Object-level TTL

It's possible to specify TTL for the object by sending the

  • X-Amz-Meta-Object-Expires or
  • X-Minio-Meta-Object-Expires

header (note: S3-compatible clients usually add the X-Amz-Meta- / X-Minio-Meta- prefix themselves) with one of the following values:

  • a signed, positive sequence of decimal numbers, each with an optional fraction and a unit suffix, such as +300ms, +1.5h, or +2h45m
    • valid time units are ns, us (or µs), ms, s, m, h
    • +2h means the object expires 2 hours from now
  • full RFC3339-formatted date

It's also possible to specify none for no expiration (or not send the header).

AWS CLI example

$ aws s3 --endpoint-url https://gateway.storjshare.io cp file s3://bucket/object --metadata Object-Expires=+2h
upload: ./file to s3://bucket/object

# or

$ aws s3 --endpoint-url https://gateway.storjshare.io cp file s3://bucket/object --metadata Object-Expires=2022-05-19T00:10:55Z
upload: ./file to s3://bucket/object
$ aws s3 --endpoint-url https://gateway.storjshare.io cp file s3://bucket/object --metadata Object-Expires=+2h
upload: ./file to s3://bucket/object

# or

$ aws s3 --endpoint-url https://gateway.storjshare.io cp file s3://bucket/object --metadata Object-Expires=2022-05-19T00:10:55Z
upload: ./file to s3://bucket/object

Caveats

The value under X-Amz-Meta-Object-Expires has priority over the value under X-Minio-Meta-Object-Expires.

ListBucketsWithAttribution (Gateway-MT only)

An alternate response of the S3 ListBuckets API endpoint which includes Attribution in the Bucket XML element. Other than the addition of Attribution in the response the endpoint behavior is the same as ListBuckets.

Request Syntax

GET /?attribution HTTP/1.1
Host: gateway.storjshare.io
GET /?attribution HTTP/1.1
Host: gateway.storjshare.io

Response Syntax

HTTP/1.1 200
<?xml version="1.0" encoding="UTF-8"?>
<ListAllMyBucketsResult>
<Buckets>
<Bucket>
<Attribution>string</Attribution>
<CreationDate>timestamp</CreationDate>
<Name>string</Name>
</Bucket>
</Buckets>
<Owner>
<DisplayName>string</DisplayName>
<ID>string</ID>
</Owner>
</ListAllMyBucketsResult>
HTTP/1.1 200
<?xml version="1.0" encoding="UTF-8"?>
<ListAllMyBucketsResult>
<Buckets>
<Bucket>
<Attribution>string</Attribution>
<CreationDate>timestamp</CreationDate>
<Name>string</Name>
</Bucket>
</Buckets>
<Owner>
<DisplayName>string</DisplayName>
<ID>string</ID>
</Owner>
</ListAllMyBucketsResult>

Example

This sample code works with the AWS SDK for Go and derives from ListBuckets a call to ListBucketsWithAttribution.

package main

import (
"fmt"
"time"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
)

type BucketWithAttribution struct {
_ struct{} `type:"structure"`
CreationDate *time.Time `type:"timestamp"`
Name *string `type:"string"`
Attribution *string `type:"string"`
}

type ListBucketsWithAttributionOutput struct {
_ struct{} `type:"structure"`
Buckets []*BucketWithAttribution `locationNameList:"Bucket" type:"list"`
Owner *s3.Owner `type:"structure"`
}

func main() {
// Note: YOUR-ACCESSKEYID and YOUR-SECRETACCESSKEY are example values, please replace them with your keys.
creds := credentials.NewCredentials(&credentials.StaticProvider{
Value: credentials.Value{
AccessKeyID: "YOUR_ACCESSKEYID",
SecretAccessKey: "YOUR_SECRETACCESSKEY",
}})

ses := session.Must(session.NewSession(aws.NewConfig().WithCredentials(creds).WithRegion("eu1").WithEndpoint("https://gateway.storjshare.io")))
svc := s3.New(ses)

op := &request.Operation{
Name: "ListBuckets",
HTTPMethod: "GET",
HTTPPath: "/?attribution",
}

output := &ListBucketsWithAttributionOutput{}

req := svc.NewRequest(op, &s3.ListBucketsInput{}, output)

if err := req.Send(); err != nil {
panic(err)
}

fmt.Println(awsutil.Prettify(output))
}
package main

import (
"fmt"
"time"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
)

type BucketWithAttribution struct {
_ struct{} `type:"structure"`
CreationDate *time.Time `type:"timestamp"`
Name *string `type:"string"`
Attribution *string `type:"string"`
}

type ListBucketsWithAttributionOutput struct {
_ struct{} `type:"structure"`
Buckets []*BucketWithAttribution `locationNameList:"Bucket" type:"list"`
Owner *s3.Owner `type:"structure"`
}

func main() {
// Note: YOUR-ACCESSKEYID and YOUR-SECRETACCESSKEY are example values, please replace them with your keys.
creds := credentials.NewCredentials(&credentials.StaticProvider{
Value: credentials.Value{
AccessKeyID: "YOUR_ACCESSKEYID",
SecretAccessKey: "YOUR_SECRETACCESSKEY",
}})

ses := session.Must(session.NewSession(aws.NewConfig().WithCredentials(creds).WithRegion("eu1").WithEndpoint("https://gateway.storjshare.io")))
svc := s3.New(ses)

op := &request.Operation{
Name: "ListBuckets",
HTTPMethod: "GET",
HTTPPath: "/?attribution",
}

output := &ListBucketsWithAttributionOutput{}

req := svc.NewRequest(op, &s3.ListBucketsInput{}, output)

if err := req.Send(); err != nil {
panic(err)
}

fmt.Println(awsutil.Prettify(output))
}
Previous
Objects