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 00678200B44 for ; Wed, 8 Jun 2016 17:24:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id F36C5160A0E; Wed, 8 Jun 2016 15:24:22 +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 594C0160A54 for ; Wed, 8 Jun 2016 17:24:22 +0200 (CEST) Received: (qmail 20695 invoked by uid 500); 8 Jun 2016 15:24:21 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 20550 invoked by uid 99); 8 Jun 2016 15:24:21 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Jun 2016 15:24:21 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 1A8222C1F69 for ; Wed, 8 Jun 2016 15:24:21 +0000 (UTC) Date: Wed, 8 Jun 2016 15:24:21 +0000 (UTC) From: "Adam Holmberg (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CASSANDRA-11979) cqlsh copyutil should get host metadata by connected address MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 08 Jun 2016 15:24:23 -0000 Adam Holmberg created CASSANDRA-11979: ----------------------------------------- Summary: cqlsh copyutil should get host metadata by connected address Key: CASSANDRA-11979 URL: https://issues.apache.org/jira/browse/CASSANDRA-11979 Project: Cassandra Issue Type: Bug Reporter: Adam Holmberg Priority: Minor Fix For: 2.2.x, 3.x pylib.copyutil presently accesses cluster metadata using {{shell.hostname}} which could be an unresolved hostname. https://github.com/apache/cassandra/blob/58d3b9a90461806d44dd85bf4aa928e575d5fb6c/pylib/cqlshlib/copyutil.py#L207 Cluster metadata normally refers to hosts in terms of numeric host address, not hostname. This works in the current integration because the driver allows hosts with unresolved names into metadata during the initial control connection. In a future version of the driver, that anomaly is removed, and no duplicate hosts-by-name are present in the metadata. We will need to update copyutil to refer to hosts by address when accessing metadata. This can be accomplished by one of two methods presently: # shell.conn.control_connection.host (gives the current connected host address) # scan metadata.all_hosts() for the one that {{is_up}} and use host.address/host.datacenter -- This message was sent by Atlassian JIRA (v6.3.4#6332)