Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B2C3F18456 for ; Fri, 6 Nov 2015 14:19:33 +0000 (UTC) Received: (qmail 18928 invoked by uid 500); 6 Nov 2015 14:19:27 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 18881 invoked by uid 500); 6 Nov 2015 14:19:27 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 18865 invoked by uid 99); 6 Nov 2015 14:19:27 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Nov 2015 14:19:27 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id B82032C1F63 for ; Fri, 6 Nov 2015 14:19:27 +0000 (UTC) Date: Fri, 6 Nov 2015 14:19:27 +0000 (UTC) From: "Ted Yu (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HBASE-14706) RegionLocationFinder should return multiple servernames by top host MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-14706?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated HBASE-14706: --------------------------- Resolution: Fixed Fix Version/s: 1.1.3 Status: Resolved (was: Patch Available) > RegionLocationFinder should return multiple servernames by top host > ------------------------------------------------------------------- > > Key: HBASE-14706 > URL: https://issues.apache.org/jira/browse/HBASE-14706 > Project: HBase > Issue Type: Bug > Components: Balancer > Affects Versions: 2.0.0, 1.2.0, 1.3.0 > Reporter: Guanghao Zhang > Assignee: Guanghao Zhang > Fix For: 2.0.0, 1.2.0, 1.3.0, 1.1.3 > > Attachments: HBASE-14706-branch-1.1.patch, HBASE-14706-trunk_v1.patch, HBASE-14706-trunk_v2.patch, HBASE-14706-trunk_v3.patch, HBASE-14706-trunk_v4.patch, HBASE-14706.patch > > > Multiple RS can run on the same host. But in current RegionLocationFinder, mapHostNameToServerName map one host to only one server. This will make LocalityCostFunction get wrong locality about region. > {code} > // create a mapping from hostname to ServerName for fast lookup > HashMap hostToServerName = new HashMap(); > for (ServerName sn : regionServers) { > hostToServerName.put(sn.getHostname(), sn); > } > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)