Skip to content

Limits

You can keep any number of objects in a single bucket.

Each team can have up to 100 buckets. More available on request.

Object names are primarily limited by the local operating system and filesystem used by your application or tooling.

Some operating systems, such as Windows, restrict certain characters in file names, including:

; ^ / * | " &

This list may not be exhaustive. Check the documentation for your operating system or filesystem if your application depends on specific object names.

Object Storage currently does not support:

  • object names that start with a forward slash
  • empty path segments
LimitValue
Maximum object size50 TiB
Minimum object size0 B
Maximum bucket name length63 characters
Maximum object name length1024 characters
Maximum / separated object name segment length255 characters

Objects must have names that are unique and do not conflict with their parent objects.

For example, the second request in this sequence will fail because it conflicts with the first object:

PUT <bucketname>/xxx/yyy/textfile.txt
PUT <bucketname>/xxx/yyy

The same conflict can happen in the opposite order:

PUT <bucketname>/xxx/yyy
PUT <bucketname>/xxx/yyy/textfile.txt

To avoid this, make sure object names are unique and do not conflict with parent object names.