Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 98FB3200BD5 for ; Thu, 8 Dec 2016 20:01:04 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 97982160B2C; Thu, 8 Dec 2016 19:01:04 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id ED648160B27 for ; Thu, 8 Dec 2016 20:01:03 +0100 (CET) Received: (qmail 99968 invoked by uid 500); 8 Dec 2016 19:01:01 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 99697 invoked by uid 99); 8 Dec 2016 19:01:01 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2016 19:01:01 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 5FADE2C0057 for ; Thu, 8 Dec 2016 19:01:01 +0000 (UTC) Date: Thu, 8 Dec 2016 19:01:01 +0000 (UTC) From: "Andres Perez (JIRA)" To: common-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (HADOOP-13873) log DNS addresses on s3a init MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 08 Dec 2016 19:01:04 -0000 [ https://issues.apache.org/jira/browse/HADOOP-13873?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15733093#comment-15733093 ] Andres Perez edited comment on HADOOP-13873 at 12/8/16 7:00 PM: ---------------------------------------------------------------- Would adding this to {{S3AFileSystem#initialize}} be enough? {code} ... bucket = name.getHost(); if(LOG.isDebugEnabled()) { LOG.debug("Bucket endpoint: " + InetAddress.getByName(bucket).toString()); } ... {code} was (Author: aaperezl): Would adding this to {{S3AFileSystem#initialize}} be enough: {code} ... bucket = name.getHost(); if(LOG.isDebugEnabled()) { LOG.debug("Bucket endpoint: " + InetAddress.getByName(bucket).toString()); } ... {code} > log DNS addresses on s3a init > ----------------------------- > > Key: HADOOP-13873 > URL: https://issues.apache.org/jira/browse/HADOOP-13873 > Project: Hadoop Common > Issue Type: Sub-task > Components: fs/s3 > Affects Versions: 2.8.0 > Reporter: Steve Loughran > Priority: Minor > > HADOOP-13871 has shown that network problems can kill perf, and that it's v. hard to track down, even if you turn up the logging in hadoop.fs.s3a and com.amazon layers to debug. > we could maybe improve things by printing out the IPAddress of the s3 endpoint, as that could help with the network tracing. Printing from within hadoop shows the one given to S3a, not a different one returned by any load balancer. -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-issues-help@hadoop.apache.org