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 AEB48200C88 for ; Fri, 19 May 2017 00:09:09 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AD47E160BC4; Thu, 18 May 2017 22:09:09 +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 073CD160BB5 for ; Fri, 19 May 2017 00:09:08 +0200 (CEST) Received: (qmail 18801 invoked by uid 500); 18 May 2017 22:09:07 -0000 Mailing-List: contact dev-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list dev@flink.apache.org Received: (qmail 18790 invoked by uid 99); 18 May 2017 22:09:07 -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; Thu, 18 May 2017 22:09:07 +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 4AC801AFA19 for ; Thu, 18 May 2017 22:09:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[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 FCDI7zZErs5o for ; Thu, 18 May 2017 22:09:06 +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 540455FB96 for ; Thu, 18 May 2017 22:09:06 +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 C1AA7E05CE for ; Thu, 18 May 2017 22:09:05 +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 D6CF221B56 for ; Thu, 18 May 2017 22:09:04 +0000 (UTC) Date: Thu, 18 May 2017 22:09:04 +0000 (UTC) From: "Till Rohrmann (JIRA)" To: dev@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (FLINK-6629) ClusterClient cannot submit jobs to HA cluster if address not set in configuration MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 18 May 2017 22:09:09 -0000 Till Rohrmann created FLINK-6629: ------------------------------------ Summary: ClusterClient cannot submit jobs to HA cluster if address not set in configuration Key: FLINK-6629 URL: https://issues.apache.org/jira/browse/FLINK-6629 Project: Flink Issue Type: Bug Components: Client Affects Versions: 1.2.1, 1.3.0, 1.4.0 Reporter: Till Rohrmann Assignee: Till Rohrmann Priority: Blocker Fix For: 1.3.0, 1.4.0 In the general case, the {{ClusterClient}} fails to submit jobs to an HA cluster. The problem is the {{LazyActorSystemLoader}} which creates an {{ActorSystem}}, upon first call. The {{ActorSystem}} is created by reading the JobManager's address from the {{Configuration}} in order to find the connecting address via {{ConnectionUtils.findConnectingAddress}}. The address in the configuration is, however, only valid in the non-HA case. In the HA case, we have to obtain the leader's address from ZooKeeper. Therefore, if the address is not explicitly set in the {{flink-conf.yaml}}, then the {{ClusterClient}} might either fail with a {{RuntimeException}} if no address at all has been specified or it will use an invalid address and retrieve the wrong connecting address. -- This message was sent by Atlassian JIRA (v6.3.15#6346)