GitHub user videni edited a comment on the discussion: How to use opendal to 
implement  breakpoint resume upload and   Incremental upload ?

> Not sure if i understood your question correctly. In your scenario, the 
> mobile service splits the data into many parts and sends them randomly to the 
> server. Once the server receives all the parts, it assembles them into a 
> complete file, and then uses `opendal` to write it to `OSS`. If the mobile 
> device reconnects to the server, we want it to continue sending only the 
> missing parts. Is that correct ?

The overall process is like this, but there are some details that need special 
explanation.

1.  The client can reconnect and continue uploading missing parts.
2.  On the server side, it is not necessary to assemble all the parts first and 
then pass it to oss. The server will upload it immediately once it gets one 
part. Therefore, the memory and disk usage of the server will be very small. My 
idea is to directly use oss's multipart.
3.  In the test environment, we will also support this disk. This 
implementation still allows the first point.

GitHub link: 
https://github.com/apache/opendal/discussions/5875#discussioncomment-12613620

----
This is an automatically sent email for dev@opendal.apache.org.
To unsubscribe, please send an email to: dev-unsubscr...@opendal.apache.org

Reply via email to