Multipart uploads
How can I upload larger files? How can I upload faster?
Last updated
Was this helpful?
How can I upload larger files? How can I upload faster?
Last updated
Was this helpful?
You may (sometimes have to) upload files in parts. This means instead of opening a single HTTP connection to transfer the whole binary to the REST API, you open multiple connections. Each HTTP connection ships part of the file.
Using multipart uploads enables the following features.
Avoiding when uploading larger files.
Increasing the upload speed by uploading the parts concurrently.
Pausing the upload.
Multipart upload is a must for uploads which require HTTP connection longer than the REST API . Multipart upload is recommended for uploading files that are larger than 5 MB. That size also constitutes the minimum size of the upload part (the last chunk may be smaller). The maximum number of chunks is 10,000. The sizes of chunks must be equal (the exception is the last chunk which may be smaller). The chunk size is defined with the first upload chunk, based on Content-Range header.
Response:
Check out other examples in our . You can also have a look at our .