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 7FB5EFB26 for ; Mon, 28 Apr 2014 17:28:26 +0000 (UTC) Received: (qmail 82594 invoked by uid 500); 28 Apr 2014 17:28:22 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 82546 invoked by uid 500); 28 Apr 2014 17:28:21 -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 82436 invoked by uid 99); 28 Apr 2014 17:28:20 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Apr 2014 17:28:20 +0000 Date: Mon, 28 Apr 2014 17:28:20 +0000 (UTC) From: "Ted Yu (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-10611) Description for hbase:acl table is wrong on master-status#catalogTables 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-10611?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13983247#comment-13983247 ] Ted Yu commented on HBASE-10611: -------------------------------- _acl_ has been renamed hbase:acl You can utilize the following constant in hbase-client/src/main/java/org/apache/hadoop/hbase/security/visibility/VisibilityConstants.java for labels table : {code} public static final TableName LABELS_TABLE_NAME = TableName.valueOf( NamespaceDescriptor.SYSTEM_NAMESPACE_NAME_STR, "labels"); {code} > Description for hbase:acl table is wrong on master-status#catalogTables > ----------------------------------------------------------------------- > > Key: HBASE-10611 > URL: https://issues.apache.org/jira/browse/HBASE-10611 > Project: HBase > Issue Type: Bug > Affects Versions: 0.96.0 > Reporter: Ted Yu > Assignee: Rekha Joshi > Priority: Minor > Labels: patch > Fix For: 0.99.0, 0.98.2 > > Attachments: HBASE-10611.1.patch, HBASE-10611.1.patch > > > On master-status#catalogTables, I see: > hbase:acl The .NAMESPACE. table holds information about namespaces. > In MasterStatusTmpl.jamon, we have: > {code} > if (tableName.equals(TableName.META_TABLE_NAME)){ > description = "The hbase:meta table holds references to all User Table regions"; > } else { > description = "The .NAMESPACE. table holds information about namespaces."; > } > {code} > The above check doesn't cover hbase:acl table. -- This message was sent by Atlassian JIRA (v6.2#6252)