You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would be particularly helpful for multipart uploads, where one chunk might fail towards the end of a potentially very large upload. With the current behavior, the transfer aborts and the entire file has to be reuploaded. Ideally, the library would retry the failed chunk(s) and proceed with other chunks until it hit a failure threshold for any given chunk.
S3Transfer (and thus boto3) has the
num_download_attempts
, which handles retries for issues likesocket.timeout
,socket.error
, etc.It would be greatly helpful if a similar option as added (and exposed up through boto3) for the upload direct.
The text was updated successfully, but these errors were encountered: