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 25C7A200CB6 for ; Thu, 29 Jun 2017 23:06:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 24806160BF7; Thu, 29 Jun 2017 21:06:06 +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 6B9F6160BC6 for ; Thu, 29 Jun 2017 23:06:05 +0200 (CEST) Received: (qmail 4293 invoked by uid 500); 29 Jun 2017 21:06:04 -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 4282 invoked by uid 99); 29 Jun 2017 21:06:04 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Jun 2017 21:06:04 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id E8C77CD753 for ; Thu, 29 Jun 2017 21:06:03 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.211 X-Spam-Level: X-Spam-Status: No, score=-99.211 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id aatl0hOZBZsc for ; Thu, 29 Jun 2017 21:06:03 +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 BCFB05FDE5 for ; Thu, 29 Jun 2017 21:06:02 +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 26766E0DD8 for ; Thu, 29 Jun 2017 21:06:01 +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 386B0245C0 for ; Thu, 29 Jun 2017 21:06:00 +0000 (UTC) Date: Thu, 29 Jun 2017 21:06:00 +0000 (UTC) From: "Rushabh S Shah (JIRA)" To: common-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HADOOP-14563) LoadBalancingKMSClientProvider#warmUpEncryptedKeys swallows IOException MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 29 Jun 2017 21:06:06 -0000 [ https://issues.apache.org/jira/browse/HADOOP-14563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rushabh S Shah updated HADOOP-14563: ------------------------------------ Attachment: HADOOP-14563-1.patch > LoadBalancingKMSClientProvider#warmUpEncryptedKeys swallows IOException > ----------------------------------------------------------------------- > > Key: HADOOP-14563 > URL: https://issues.apache.org/jira/browse/HADOOP-14563 > Project: Hadoop Common > Issue Type: Bug > Affects Versions: 2.8.1 > Reporter: Rushabh S Shah > Assignee: Rushabh S Shah > Attachments: HADOOP-14563-1.patch, HADOOP-14563.patch > > > TestAclsEndToEnd is failing consistently in HADOOP-14521. > The reason behind it is LoadBalancingKMSClientProvider#warmUpEncryptedKeys swallows IOException while KMSClientProvider#warmUpEncryptedKeys throws all the way back to createEncryptionZone and creation of EZ fails. > Following are the relevant piece of code snippets. > {code:title=KMSClientProvider.java|borderStyle=solid} > @Override > public void warmUpEncryptedKeys(String... keyNames) > throws IOException { > try { > encKeyVersionQueue.initializeQueuesForKeys(keyNames); > } catch (ExecutionException e) { > throw new IOException(e); > } > } > {code} > {code:title=LoadBalancingKMSClientProvider.java|borderStyle=solid} > // This request is sent to all providers in the load-balancing group > @Override > public void warmUpEncryptedKeys(String... keyNames) throws IOException { > for (KMSClientProvider provider : providers) { > try { > provider.warmUpEncryptedKeys(keyNames); > } catch (IOException ioe) { > LOG.error( > "Error warming up keys for provider with url" > + "[" + provider.getKMSUrl() + "]", ioe); > } > } > } > {code} > In HADOOP-14521, I intend to always instantiate LoadBalancingKMSClientProvider even if there is only one provider so that the retries can applied at only one place. > We need to decide whether we want to fail in both the case or continue. -- This message was sent by Atlassian JIRA (v6.4.14#64029) --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-issues-help@hadoop.apache.org