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 77A63200D31 for ; Fri, 20 Oct 2017 18:05:09 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7348A160BCB; Fri, 20 Oct 2017 16:05: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 C1155160BED for ; Fri, 20 Oct 2017 18:05:08 +0200 (CEST) Received: (qmail 35420 invoked by uid 500); 20 Oct 2017 16:05:07 -0000 Mailing-List: contact dev-help@gearpump.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@gearpump.incubator.apache.org Delivered-To: mailing list dev@gearpump.incubator.apache.org Received: (qmail 35399 invoked by uid 99); 20 Oct 2017 16:05:07 -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; Fri, 20 Oct 2017 16:05:07 +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 0448CC3E26 for ; Fri, 20 Oct 2017 16:05:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-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-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id tN8dYu4HrXV1 for ; Fri, 20 Oct 2017 16:05:06 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 9FCED5FDD9 for ; Fri, 20 Oct 2017 16:05:04 +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 6EF53E0F1C for ; Fri, 20 Oct 2017 16:05:02 +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 B84AF243A1 for ; Fri, 20 Oct 2017 16:05:00 +0000 (UTC) Date: Fri, 20 Oct 2017 16:05:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: dev@gearpump.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (GEARPUMP-355) AppMasterResolver fails to run against a kerberized Hadoop cluster MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 20 Oct 2017 16:05:09 -0000 [ https://issues.apache.org/jira/browse/GEARPUMP-355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16212823#comment-16212823 ] ASF GitHub Bot commented on GEARPUMP-355: ----------------------------------------- Github user titikakatoo commented on a diff in the pull request: https://github.com/apache/incubator-gearpump/pull/231#discussion_r146003668 --- Diff: experiments/yarn/src/main/scala/org/apache/gearpump/experiments/yarn/client/AppMasterResolver.scala --- @@ -75,3 +65,40 @@ class AppMasterResolver(yarnClient: YarnClient, system: ActorSystem) { result } } + +object AppMasterResolver { + val LOG = LogUtil.getLogger(getClass) + + def resolveAppMasterAddress(report: ApplicationReport, system: ActorSystem): ActorRef = { + val appMasterPath = s"${report.getTrackingURL}/supervisor-actor-path" + LOG.info(s"appMasterPath=$appMasterPath") + + val connectionFactory: URLConnectionFactory = URLConnectionFactory + .newDefaultURLConnectionFactory(new YarnConfiguration()) + val url: URL = new URL(appMasterPath) + val connection: HttpURLConnection = connectionFactory.openConnection(url) + .asInstanceOf[HttpURLConnection] + connection.setInstanceFollowRedirects(true) + + try { + connection.connect() + } catch { + case e: IOException => + LOG.error(s"Failed to connect to AppMaster" + e.getMessage) + } + + val status = connection.getResponseCode + if (status == 200) { + val stream: java.io.InputStream = connection.getInputStream + val response = IOUtils.toString(stream, StandardCharsets.UTF_8) + LOG.info("Successfully resolved AppMaster address: " + response) + connection.disconnect() + AkkaHelper.actorFor(system, response) + } else { + connection.disconnect() + throw new IOException("Fail to resolve AppMaster address, please make sure " + + s"${report.getOriginalTrackingUrl} is accessible...") --- End diff -- @manuzhang getTrackingURL was merged already in the master branch. > AppMasterResolver fails to run against a kerberized Hadoop cluster > ------------------------------------------------------------------ > > Key: GEARPUMP-355 > URL: https://issues.apache.org/jira/browse/GEARPUMP-355 > Project: Apache Gearpump > Issue Type: Bug > Components: security, yarn > Affects Versions: 0.8.4 > Reporter: Timea Magyar > Assignee: Timea Magyar > Fix For: 0.8.4 > > > When trying to launch a Gearpump cluster in a kerberized Hadoop/Yarn environment, after the Application Master address has been resolved as a prerequisite, the YarnAppMaster (responsible for starting GearPump masters, workers, UI servers as Yarn containers) address (actor reference) must be obtained via Kerberos/Spnego. (Kerberos over http) > The current implementation for this resides in the AppMasterResolver class and is using an apache http client (version 3.x) for establishing a connection to the Application Master and obtain the above YarnAppMaster actor reference. Since the apache http client does not support the negotiate authentication scheme in version 3.x (required for a connection over kerberos/spnego) this step will always fail in a kerberized Yarn/Hadoop cluster set-up. > I tested this in a secured/kerberized CDH 5.7.5 environment. I would like to provide a patch for this by adapting the SPNEGO-enabled Hadoop web connection code from WebHDFS. -- This message was sent by Atlassian JIRA (v6.4.14#64029)