Felix Bünemann

Results 317 comments of Felix Bünemann

Amazon Cloud Drive definitely supports resuming uploads, it is possible to pause all uploads in the official Amazon Drive Mac app and resume uploading at a later time and upload...

I have looked into the ACD REST API docs, but it does not document how resuming works. However the Mac .NET client also uses the REST API and has very...

I've done some testing and I always get the 204 response with my modified acd_cli, unless I specify at least a "size" attribute in the node metadata and optionally "md5"....

@olihey I used `local_id = uuid.uuidv4().hex` in python. It's simply a client generated id to find the resume info (you don't have a node id at that point).

@ncw The NodeStatus appears just to be an enum that's part of the metadata reponse for single nodes or lists. For a node that is currently uploading it has the...

You need to abort the POST request before querying /resume or you will get a 204. The mac client also does some polling after an upload was paused, so you...

If this uses S3 multipart uploads under the hood the minimum size would be 5 MiB.

If ACD is using a fixed chunk size for all multipart uploads then the minimum size would be around 50 MB (50,000 KiB), because the maximum file size is 50,000...

The above limit of 1024 multipart upload parts is outdated. The current S3 REST API docs specify 1 to 10,000 parts with a minimum part size of 5 MiB and...

I have some new findings: - ACD uses an S3 multipart size of 5243915 bytes (~5 MiB) - Resuming is only possible, if at least 5243915 bytes have been uploaded,...