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 0212A200D50 for ; Mon, 4 Dec 2017 14:03:05 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0066D160BF9; Mon, 4 Dec 2017 13:03:05 +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 46BA6160C05 for ; Mon, 4 Dec 2017 14:03:04 +0100 (CET) Received: (qmail 44400 invoked by uid 500); 4 Dec 2017 13:03:03 -0000 Mailing-List: contact mapreduce-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list mapreduce-issues@hadoop.apache.org Received: (qmail 44389 invoked by uid 99); 4 Dec 2017 13:03:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Dec 2017 13:03:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 7F6BB1A0CB2 for ; Mon, 4 Dec 2017 13:03:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 8wgOwIunsbAH for ; Mon, 4 Dec 2017 13:03:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id E6FB35F307 for ; Mon, 4 Dec 2017 13:03:00 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 7547BE0162 for ; Mon, 4 Dec 2017 13:03:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 2996521064 for ; Mon, 4 Dec 2017 13:03:00 +0000 (UTC) Date: Mon, 4 Dec 2017 13:03:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: mapreduce-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (MAPREDUCE-7017) Too many times of meaningless invocation in TaskAttemptImpl#resolveHosts MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 04 Dec 2017 13:03:05 -0000 [ https://issues.apache.org/jira/browse/MAPREDUCE-7017?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16276739#comment-16276739 ] ASF GitHub Bot commented on MAPREDUCE-7017: ------------------------------------------- GitHub user jiayuhan-it opened a pull request: https://github.com/apache/hadoop/pull/309 MAPREDUCE-7017:Too many times of meaningless invocation in TaskAttemptImpl#resolveHosts MRAppMaster uses TaskAttemptImpl::resolveHosts to determine the dataLocalHosts for each task when the location of data split is IP, which will call a lot of times ( taskNum * dfsReplication) of function InetAddress::getByName and most of the funcition calls are redundant. When the job has a great number of tasks and the speed of DNS resolution is not fast enough, it will take a lot of time at this stage before the job running. You can merge this pull request into a Git repository by running: $ git pull https://github.com/jiayuhan-it/hadoop trunk Alternatively you can review and apply these changes as the patch at: https://github.com/apache/hadoop/pull/309.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #309 ---- commit fd42cd960bcfc40fd479d9af0109b15f21a11811 Author: jiayuhan Date: 2017-12-04T10:46:42Z Too many times of meaningless invocation in TaskAttemptImpl#resolveHosts ---- > Too many times of meaningless invocation in TaskAttemptImpl#resolveHosts > ------------------------------------------------------------------------ > > Key: MAPREDUCE-7017 > URL: https://issues.apache.org/jira/browse/MAPREDUCE-7017 > Project: Hadoop Map/Reduce > Issue Type: Improvement > Components: mr-am > Affects Versions: 3.0.0-alpha4 > Reporter: jiayuhan-it > Attachments: MAPREDUCE-7017.001.patch > > > MRAppMaster uses {{TaskAttemptImpl::resolveHosts}} to determine the dataLocalHosts for each task when the location of data split is IP, which will call a lot of times ( taskNum * dfsReplication) of function {{InetAddress::getByName}} and most of the funcition calls are redundant. When the job has a great number of tasks and the speed of DNS resolution is not fast enough, it will take a lot of time at this stage before the job running. -- This message was sent by Atlassian JIRA (v6.4.14#64029) --------------------------------------------------------------------- To unsubscribe, e-mail: mapreduce-issues-unsubscribe@hadoop.apache.org For additional commands, e-mail: mapreduce-issues-help@hadoop.apache.org