This page discusses XML API multipart uploads in Cloud Storage. This upload method uploads files in parts and then assembles them into a single object using a final request. XML API multipart uploads are compatible with Amazon S3 multipart uploads.
Overview
An XML API multipart upload allows you to upload data in multiple parts and then assemble them into a final object. This behavior has several advantages, particularly for large files:
You can upload parts simultaneously, reducing the time it takes to upload the data in its entirety.
If one of the upload operations fails, you only have to re-upload a portion of the overall object, instead of restarting from the beginning.
Since the total file size is not specified in advance, you can use XML API multipart uploads for streaming uploads or for compressing data on-the-fly while uploading.
An XML API multipart upload has three required steps:
Initiate the upload using a
POST
request, which includes specifying any metadata that the completed object should have. The response returns anUploadId
that you use in all subsequent requests associated with the upload.Upload the data using one or more
PUT
requests.Complete the upload using a
POST
request. This request overwrites any existing object in the bucket with the same name.
There is no limit to how long a multipart upload and its uploaded parts can remain unfinished or idle in a bucket.
- Successfully uploaded parts count toward your monthly storage usage.
- You can avoid a buildup of abandoned multipart uploads by using Object Lifecycle Management to automatically remove multipart uploads when they reach a specified age.
Considerations
The following limitations apply to using XML API multipart uploads:
- There are limits to the minimum size a part can be, the maximum size a part can be, and the number of parts used to assemble the completed upload.
- Preconditions are not supported in the requests.
- MD5 hashes don't exist for objects uploaded using this method.
- This upload method is not supported in the Google Cloud console or the Google Cloud CLI.
Keep in mind the following when working with XML API multipart uploads:
XML API multipart uploads have specific IAM permissions. If you use custom IAM roles, you should ensure those roles have the permissions you need.
While you can initiate an upload and upload parts, the request to complete the upload fails if it would overwrite an object that has a hold on it or an unfulfilled retention period.
You can list ongoing uploads in a bucket, but only a completed upload appears in the normal list of objects in the bucket.
An uploaded part can be subject to early deletion charges if it is never used.
How client libraries use XML API multipart uploads
This section provides information about performing XML API multipart uploads with client libraries that support it.
Client libraries
For more information, see the
Cloud Storage Java API
reference documentation.
To authenticate to Cloud Storage, set up Application Default Credentials.
For more information, see
Set up authentication for a local development environment.
The Java client library does not support XML API multipart uploads. Instead, use
parallel composite uploads.
For more information, see the
Cloud Storage Node.js API
reference documentation.
To authenticate to Cloud Storage, set up Application Default Credentials.
For more information, see
Set up authentication for a local development environment.
You can perform XML API multipart uploads using the
For more information, see the
Cloud Storage Python API
reference documentation.
To authenticate to Cloud Storage, set up Application Default Credentials.
For more information, see
Set up authentication for a local development environment.
You can perform XML API multipart uploads using the
Java
Node.js
uploadFileInChunks
method. For example:Python
upload_chunks_concurrently
method. For example:
What's next
- Explore additional uploading methods for Cloud Storage.
- Learn about truncated exponential backoff and when to retry requests.