RyanSkraba commented on code in PR #14708:
URL: https://github.com/apache/iceberg/pull/14708#discussion_r2590167763
##########
core/src/main/java/org/apache/iceberg/rest/ExponentialHttpRequestRetryStrategy.java:
##########
@@ -97,6 +99,7 @@ class ExponentialHttpRequestRetryStrategy implements
HttpRequestRetryStrategy {
HttpStatus.SC_BAD_GATEWAY,
HttpStatus.SC_GATEWAY_TIMEOUT,
HttpStatus.SC_REQUEST_TIMEOUT);
+ this.retriableExceptions = ImmutableSet.of(SocketTimeoutException.class);
Review Comment:
Thanks! Yeah, I've been trying to understand the issues with table
corruption! It's kind of tricky, is it still possible for this to occur with
an idempotent method being called? I would expect a GET (for example) to be
strictly read-only.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]