-
Notifications
You must be signed in to change notification settings - Fork 10
v3.1 Multipart Upload
Andrey Kurilov edited this page Feb 22, 2017
·
1 revision
TODO
- The storage API supporting the MPU is used. These are Amazon S3 and Openstack Swift currently.
- In the distributed mode, all object parts are processed by the single storage driver.
- "Create" load type is used to split the large objects into the parts uploaded separately.
- No guarantees about the time of each upload completion request is issued and finished. This means that user should use count limit for a multipart upload load job.
Mongoose has the so called I/O task abstraction. I/O tasks are executed by the specific storage drivers. The storage driver may be able to detect the "multipart" I/O tasks and execute the corresponding sequence of the "sub-tasks":
- Initiate the object MPU.
- Upload the object parts.
- Commit the object MPU.
The "item-data-ranges-threshold" configuration parameter controls the MPU behavior. The value is the size in bytes. Any new generated object is treated as "large" if its size is more or equal than the configured threshold.
TODO
TODO
- Support Read for the segmented objects
- Support Update for the segmented objects
- Support Copy for the segmented objects
- Overview
- Deployment
- User Guide
- Troubleshooting
- Reference