Return-Path: X-Original-To: apmail-flink-issues-archive@minotaur.apache.org Delivered-To: apmail-flink-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 450D318B26 for ; Fri, 13 Nov 2015 10:15:11 +0000 (UTC) Received: (qmail 7629 invoked by uid 500); 13 Nov 2015 10:15:11 -0000 Delivered-To: apmail-flink-issues-archive@flink.apache.org Received: (qmail 7583 invoked by uid 500); 13 Nov 2015 10:15:11 -0000 Mailing-List: contact issues-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 issues@flink.apache.org Received: (qmail 7567 invoked by uid 99); 13 Nov 2015 10:15:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Nov 2015 10:15:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id EDFEA2C1F57 for ; Fri, 13 Nov 2015 10:15:10 +0000 (UTC) Date: Fri, 13 Nov 2015 10:15:10 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-2977) Cannot access HBase in a Kerberos secured Yarn cluster 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/FLINK-2977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15003813#comment-15003813 ] ASF GitHub Bot commented on FLINK-2977: --------------------------------------- Github user mxm commented on the pull request: https://github.com/apache/flink/pull/1342#issuecomment-156387638 +1 thanks for improving it! > Cannot access HBase in a Kerberos secured Yarn cluster > ------------------------------------------------------ > > Key: FLINK-2977 > URL: https://issues.apache.org/jira/browse/FLINK-2977 > Project: Flink > Issue Type: Bug > Components: YARN Client > Reporter: Niels Basjes > Assignee: Niels Basjes > Attachments: FLINK-2977-20151005-untested.patch, FLINK-2977-20151009.patch > > > I have created a very simple Flink topology consisting of a streaming Source (the outputs the timestamp a few times per second) and a Sink (that puts that timestamp into a single record in HBase). > Running this on a non-secure Yarn cluster works fine. > To run it on a secured Yarn cluster my main routine now looks like this: > {code} > public static void main(String[] args) throws Exception { > System.setProperty("java.security.krb5.conf", "/etc/krb5.conf"); > UserGroupInformation.loginUserFromKeytab("nbasjes@xxxxxx.NET", "/home/nbasjes/.krb/nbasjes.keytab"); > final StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); > env.setParallelism(1); > DataStream stream = env.addSource(new TimerTicksSource()); > stream.addSink(new SetHBaseRowSink()); > env.execute("Long running Flink application"); > } > {code} > When I run this > flink run -m yarn-cluster -yn 1 -yjm 1024 -ytm 4096 ./kerberos-1.0-SNAPSHOT.jar > I see after the startup messages: > {quote} > 17:13:24,466 INFO org.apache.hadoop.security.UserGroupInformation - Login successful for user nbasjes@xxxxxx.NET using keytab file /home/nbasjes/.krb/nbasjes.keytab > 11/03/2015 17:13:25 Job execution switched to status RUNNING. > 11/03/2015 17:13:25 Custom Source -> Stream Sink(1/1) switched to SCHEDULED > 11/03/2015 17:13:25 Custom Source -> Stream Sink(1/1) switched to DEPLOYING > 11/03/2015 17:13:25 Custom Source -> Stream Sink(1/1) switched to RUNNING > {quote} > Which looks good. > However ... no data goes into HBase. > After some digging I found this error in the task managers log: > {quote} > 17:13:42,677 WARN org.apache.hadoop.hbase.ipc.RpcClient - Exception encountered while connecting to the server : javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Failed to find any Kerberos tgt)] > 17:13:42,677 FATAL org.apache.hadoop.hbase.ipc.RpcClient - SASL authentication failed. The most likely cause is missing or invalid credentials. Consider 'kinit'. > javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Failed to find any Kerberos tgt)] > at com.sun.security.sasl.gsskerb.GssKrb5Client.evaluateChallenge(GssKrb5Client.java:212) > at org.apache.hadoop.hbase.security.HBaseSaslRpcClient.saslConnect(HBaseSaslRpcClient.java:177) > at org.apache.hadoop.hbase.ipc.RpcClient$Connection.setupSaslConnection(RpcClient.java:815) > at org.apache.hadoop.hbase.ipc.RpcClient$Connection.access$800(RpcClient.java:349) > {quote} > First starting a yarn-session and then loading my job gives the same error. > My best guess at this point is that Flink needs the same fix as described here: > https://issues.apache.org/jira/browse/SPARK-6918 ( https://github.com/apache/spark/pull/5586 ) -- This message was sent by Atlassian JIRA (v6.3.4#6332)