AWS S3 max file and upload sizes

浪子不回头ぞ 提交于 2020-05-27 03:57:07

问题


AWS S3 documentation says:

Individual Amazon S3 objects can range in size from a minimum of 0 bytes to a maximum of 5 terabytes. The largest object that can be uploaded in a single PUT is 5 gigabytes.

How do I store a file of size 5TB if I can only upload a file of size 5GB?


回答1:


According to the documentation here you should use multipart uploads:

Upload objects in parts—Using the multipart upload API, you can upload large objects, up to 5 TB.

The multipart upload API is designed to improve the upload experience for larger objects. You can upload objects in parts. These object parts can be uploaded independently, in any order, and in parallel. You can use a multipart upload for objects from 5 MB to 5 TB in size.

Here there is a list of the APIs and an example on how to use each one.



来源:https://stackoverflow.com/questions/43021266/aws-s3-max-file-and-upload-sizes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!