Uploads and downloads (original) (raw)
Uploads and downloads
Stay organized with collections Save and categorize content based on your preferences.
This page discusses concepts related to uploading and downloading objects. You can upload and store any MIME type of data up to 5 TiB in size.
You can send upload requests to Cloud Storage in the following ways:
- Single-request upload. An upload method where an object is uploaded as a single request. Use this if the file is small enough to upload in its entirety if the connection fails. SeeUpload object from file or Upload object from memory for guides to single-request uploads.
- Resumable upload. An upload method that provides a more reliable transfer, which is especially important with large files. Resumable uploads are a good choice for most applications, since they also work for small files at the cost of one additional HTTP request per upload. You can also use resumable uploads to perform streaming transfers, which allows you to upload an object of unknown size.
- XML API multipart upload. An upload method that is compatible with Amazon S3 multipart uploads. Files are uploaded in parts and assembled into a single object with the final request. XML API multipart uploads allow you to upload the parts in parallel, potentially reducing the time to complete the overall upload.
Using these basic upload types, more advanced upload strategies are possible:
- Parallel composite upload. An upload strategy in which you chunk a file and upload the chunks in parallel. Unlike XML API multipart uploads, parallel composite uploads use the compose operation, and the final object is stored as a composite object.
- Streaming upload. An upload method that lets you upload data without requiring that the data first be saved to a file, which is useful when you don't know the total size of the upload at the start of the upload.
- Chunked transfer encoding upload. A single-request upload that includes the header
Transfer-Encoding: chunked
, allowing the upload to be sent in multiple, sequential chunks of data.
Upload size considerations
When choosing whether to use a single-request upload instead of a resumable upload or XML API multipart upload, consider the amount of time that you're willing to lose should a network failure occur and you need to restart the upload from the beginning. For faster connections, your cutoff size can typically be larger.
For example, say you're willing to tolerate 30 seconds of lost time:
- If you upload from a local system with an average upload speed of 8 Mbps, you can use single-request uploads for files as large as 30 MB.
- If you upload from an in-region service that averages 500 Mbps for its upload speed, the cutoff size for files is almost 2 GB.
Downloads
All downloads from Cloud Storage have the same basic behavior: an HTTP or HTTPS GET
request that can include an optional Range
header, which defines a specific portion of the object to download.
Using this basic download behavior, you can resume interrupted downloads, and you can utilize more advanced download strategies, such assliced object downloads and streaming downloads.