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
I've encountered a transient issue when performing large uploads to an S3 store.
I occasionally run into this error (perhaps once in 100 uploads):
Put "<s3 bucket name>/<chunk id>/<chunk id>.cacnk": write tcp <ip>-><ip>: use of closed network connection
A simple solution to this problem would just be to retry any failed PUT (or GET) requests, similar to how the RemoteHTTPStore does with error-retry option.
Minio-go implements retries but only for errors it deems retry-able (listed here), unfortunately any TCP errors won't be retried even though a number of them can be solved by retrying the request.
The text was updated successfully, but these errors were encountered:
I've encountered a transient issue when performing large uploads to an S3 store.
I occasionally run into this error (perhaps once in 100 uploads):
A simple solution to this problem would just be to retry any failed PUT (or GET) requests, similar to how the
RemoteHTTPStore
does witherror-retry
option.Minio-go implements retries but only for errors it deems retry-able (listed here), unfortunately any TCP errors won't be retried even though a number of them can be solved by retrying the request.
The text was updated successfully, but these errors were encountered: