Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 1.56 KB

upload-manager.rst

File metadata and controls

20 lines (14 loc) · 1.56 KB

Uploading Large Objects

The Object Storage service supports multipart uploads to make large object uploads easier by splitting the large object into parts. The Python SDK supports raw multipart upload operations for advanced use cases, as well as a higher-level upload class that uses the multipart upload APIs. Using Multipart Uploads provides links to the APIs used for raw multipart upload operations. Higher-level uploads can be performed using the :py~oci.object_storage.UploadManager. The :py~oci.object_storage.UploadManager will: split a large object into parts for you, upload the parts in parallel, and then recombine and commit the parts as a single object in Object Storage.

The UploadObject example shows how :py~oci.object_storage.UploadManager can be used to upload files to object storage.

Warning

Potential data corruption with Python SDK on binary upload in versions 2.8.0 and below, for more information please see Known Issues<known-issues> section.