johnnyg commented on PR #445: URL: https://github.com/apache/arrow-rs-object-store/pull/445#issuecomment-3130185130
@Barre that looks like a different issue; I would recommend creating a separate issue for that. The issue here was that the request was never being sent properly because the connection would get reset (on the TCP level it would never get back an ACK but instead a RST) however in your case it seems like the PUT request is being sent but is timing out before you get a reply. The error is correctly recognised as a timeout however by default object_store will only retry timeouts for GET, HEAD, OPTIONS and TRACE methods (not PUT). I imagine changing that default would be more of an ideological question to the maintainers of object_store rather than a difficult or large code change (it should be a one liner to change). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org