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'm observing ConnectTimeoutError sometimes, which is likely caused by the network and searching for a right way to handle thimeouts.
I see s3fs has retries with exponential backoff, but it ignores
How this can be tested/reproduced:
sudo apt install iproute2 # likely you already have it
sudo tc qdisc add dev eth0 root netem delay 3500ms # set delay on network
# sudo tc qdisc del dev eth0 root # use to remove delay when done with testing.
ConnectTimeoutError: Connect timeout on endpoint URL: "https://example-bucker.s3.us-west-2.amazonaws.com/example-folder"
This failure is expected, BUT when I insert logging in s3fs, it does not retry this exception (though default retries=5). Should this exception be retried?
The text was updated successfully, but these errors were encountered:
I'm observing
ConnectTimeoutError
sometimes, which is likely caused by the network and searching for a right way to handle thimeouts.I see s3fs has retries with exponential backoff, but it ignores
How this can be tested/reproduced:
now in python:
This crashes with
This failure is expected, BUT when I insert logging in s3fs, it does not retry this exception (though default retries=5). Should this exception be retried?
The text was updated successfully, but these errors were encountered: