Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6796E18605 for ; Sat, 10 Oct 2015 05:18:05 +0000 (UTC) Received: (qmail 54164 invoked by uid 500); 10 Oct 2015 05:18:05 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 54107 invoked by uid 500); 10 Oct 2015 05:18:05 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 54093 invoked by uid 99); 10 Oct 2015 05:18:05 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Oct 2015 05:18:05 +0000 Date: Sat, 10 Oct 2015 05:18:05 +0000 (UTC) From: "Andrew Purtell (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-14580) Make the HBaseMiniCluster compliant with Kerberos 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/HBASE-14580?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14951607#comment-14951607 ] Andrew Purtell commented on HBASE-14580: ---------------------------------------- bq. .UserGroupInformation (UserGroupInformation.java:getGroupNames(1521)) - No groups available for user securedUser' I'm not sure of its impact. As Gary said, this is harmless unless you're test depends on a valid group membership. > Make the HBaseMiniCluster compliant with Kerberos > ------------------------------------------------- > > Key: HBASE-14580 > URL: https://issues.apache.org/jira/browse/HBASE-14580 > Project: HBase > Issue Type: Improvement > Components: security, test > Affects Versions: 2.0.0 > Reporter: Nicolas Liochon > Assignee: Nicolas Liochon > Fix For: 2.0.0 > > Attachments: patch-14580.v1.patch > > > Whne using MiniKDC and the minicluster in a unit test, there is a conflict causeed by HBaseTestingUtility: > {code} > public static User getDifferentUser(final Configuration c, > final String differentiatingSuffix) > throws IOException { > // snip > String username = User.getCurrent().getName() + > differentiatingSuffix; <==================== problem here > User user = User.createUserForTesting(c, username, > new String[]{"supergroup"}); > return user; > } > {code} > This creates users like securedUser/localhost@EXAMPLE.COM.hfs.0, and this does not work. > My fix is to return the current user when Kerberos is set. I don't think that there is another option (any other opinion?). However this user is not in a group so we have logs like 'WARN [IPC Server handler 9 on 61366] security.UserGroupInformation (UserGroupInformation.java:getGroupNames(1521)) - No groups available for user securedUser' I'm not sure of its impact. [~apurtell], what do you think? -- This message was sent by Atlassian JIRA (v6.3.4#6332)