[ https://issues.apache.org/jira/browse/HADOOP-18915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17790714#comment-17790714 ]
ASF GitHub Bot commented on HADOOP-18915: ----------------------------------------- steveloughran commented on code in PR #6180: URL: https://github.com/apache/hadoop/pull/6180#discussion_r1408201324 ########## hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/S3AUtils.java: ########## @@ -183,6 +185,12 @@ public static IOException translateException(@Nullable String operation, // call considered an sign of connectivity failure return (EOFException)new EOFException(message).initCause(exception); } + if (exception instanceof ApiCallTimeoutException + || exception instanceof ApiCallAttemptTimeoutException) { + // An API call to an AWS service timed out. Review Comment: adding comments around this and that `APICallTimeout` is the one we should expect > Extend S3A http client connection timeouts > ------------------------------------------ > > Key: HADOOP-18915 > URL: https://issues.apache.org/jira/browse/HADOOP-18915 > Project: Hadoop Common > Issue Type: Sub-task > Components: fs/s3 > Affects Versions: 3.4.0 > Reporter: Ahmar Suhail > Assignee: Steve Loughran > Priority: Major > Labels: pull-request-available > > * Add ability to configure *all* timeouts, especially acquisition time > * recognise ApiCallTimeout and map tp a retryable exception > * use getDuration so suffixes can be used -so remove all ambiguity about time > unit > * use units in core-default.xml so warnings aren't printed -- This message was sent by Atlassian Jira (v8.20.10#820010) --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-issues-h...@hadoop.apache.org