Can Amazon S3 uploads resume on failure or do they need to restart?
A.
Restart from beginning
B.
You can resume them, if you flag the “resume on failure” option before uploading.
C.
Resume on failure
D.
Depends on the file size
Can Amazon S3 uploads resume on failure or do they need to restart?
Can Amazon S3 uploads resume on failure or do they need to restart?
A.
Restart from beginning
B.
You can resume them, if you flag the “resume on failure” option before uploading.
C.
Resume on failure
D.
Depends on the file size
C. With multipart upload api yes.
What would be the correct option in case of single upload?
C
When an error occurs during the multipart upload process, a MultipartUploadException is thrown. This exception provides access to the UploadState object, which contains information about the multipart upload’s progress. The UploadState can be used to resume an upload that failed to complete.
https://docs.aws.amazon.com/aws-sdk-php/v3/guide/service/s3-multipart-upload.html
but how to do this with the AWS CLI? I don’t want to write a PHP program to upload a file.
C.
Resume on failure
Question is not very clear whether it’s single or multiparty upload.for multi part via API is yes (resume on failure). From my understanding single upload this option is not apply.