-
Notifications
You must be signed in to change notification settings - Fork 10
v3.4 Multipart Upload
Some cloud storages support the concatenation of the data object parts uploaded independently.
- 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.
- It's strongly recommended to set "load-batch-size" configuration parameter to "1".
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.
If multipart upload task is finished the record containing the object name and the corresponding
upload id is written to the parts.upload.csv
file.
The upload completion response latency is also persisted in the 3rd column.
- Support Read for the segmented objects
- Support Update for the segmented objects
- Support Copy for the segmented objects
- Overview
- Deployment
- User Guide
- Troubleshooting
- Reference