aliyun / aliyun-oss-react-native

MIT License
148 stars 100 forks source link

Multipart upload should upload parts in parallel instead of serially #7

Open han4wluc opened 6 years ago

han4wluc commented 6 years ago

https://helpcdn.aliyun.com/document_detail/63262.html

要上传的文件切分成Part之后,
文件顺序是通过上传过程中指定的partNumber来确定的,实际执行中并没有顺序要求,
因此可以实现并发上传。具体的并发个数并不是越多速度越快,
要结合用户自身的网络情况和设备负载综合考虑。

Right now multipart upload for android and ios are implemented by uploading each part synchronously. If one part fails, there is no retry, the entire upload fails. This implementation does not receive many of the benefits of using multipart upload. Uploading in parallel should make the upload faster.

Do you know where I can find a parallel implementation multipart upload for android and ios?